feat: 2e save character initial implementation WIP
2e is hidden behind url navigation hiding, so hoping that nobody found it yet. Note: DB migration make this commit a bit risky!
This commit is contained in:
@@ -13,6 +13,8 @@ public class ApplicationDbContext : IdentityDbContext<ApplicationUser, Applicati
|
||||
|
||||
public DbSet<DataProtectionKey> DataProtectionKeys { get; set; }
|
||||
|
||||
// 1st edition character
|
||||
|
||||
public DbSet<V1Karakter> Karakterek { get; set; }
|
||||
|
||||
public DbSet<V1KarakterKepzettseg> KarakterKepzettsegek { get; set; }
|
||||
@@ -21,4 +23,13 @@ public class ApplicationDbContext : IdentityDbContext<ApplicationUser, Applicati
|
||||
|
||||
public DbSet<V1Felszereles> Felszerelesek { get; set; }
|
||||
|
||||
// 2nd edition character
|
||||
|
||||
public DbSet<V2Karakter> Karakterek2E { get; set; }
|
||||
|
||||
public DbSet<V2KarakterKepzettseg> KarakterKepzettsegek2E { get; set; }
|
||||
|
||||
public DbSet<V2Szintlepes> Szintlepesek2E { get; set; }
|
||||
|
||||
public DbSet<V2Felszereles> Felszerelesek2E { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user