New table StockGroups added

This commit is contained in:
2022-02-01 17:26:05 +01:00
parent dd0f9dde71
commit 5e42d91c1e
8 changed files with 252 additions and 0 deletions

View File

@ -123,6 +123,23 @@ namespace DatamodelLibrary.Migrations
b.ToTable("PersonStocks");
});
modelBuilder.Entity("DataDomain.ShareModel", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("GroupName")
.HasColumnType("TEXT");
b.Property<string>("StockName")
.HasColumnType("TEXT");
b.HasKey("Id");
b.ToTable("StockGroups");
});
modelBuilder.Entity("DataDomain.StockMember", b =>
{
b.Property<int>("Id")