Added connection stocks per person

This commit is contained in:
2021-03-07 08:47:15 +01:00
parent f7dc96cd5f
commit c2d8e76643
6 changed files with 213 additions and 0 deletions

View File

@ -74,6 +74,26 @@ namespace DatamodelLibrary.Migrations
b.ToTable("Persons");
});
modelBuilder.Entity("DataDomain.PersonStock", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<string>("Comment")
.HasColumnType("TEXT");
b.Property<int>("PersonId")
.HasColumnType("INTEGER");
b.Property<int>("StockId")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.ToTable("PersonStocks");
});
modelBuilder.Entity("DataDomain.StockMember", b =>
{
b.Property<int>("Id")