This commit is contained in:
Paul Schneider
2021-08-23 03:21:08 +01:00
parent 504f431937
commit cdb9a26d2c
16 changed files with 303 additions and 61 deletions

View File

@ -6,6 +6,7 @@ using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using isnd.Data;
using isnd.Data.ApiKeys;
using isnd.Data.Catalog;
namespace isnd.Data
{
@ -28,5 +29,6 @@ namespace isnd.Data
public DbSet<ApiKey> ApiKeys { get; set; }
public DbSet<Package> Packages { get; set; }
public DbSet<PackageVersion> PackageVersions { get; set; }
public DbSet<Commit> Commits { get; set; }
}
}