Aktueller Datenstand

This commit is contained in:
BuildTools 2024-02-28 19:52:57 +01:00
parent 7718d893cc
commit 67ae87b78d
5 changed files with 20 additions and 11 deletions

Binary file not shown.

View File

@ -23,6 +23,12 @@ namespace CocktailWeb.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER");
b.Property<int>("Counter")
.HasColumnType("INTEGER");
b.Property<string>("Ersteller")
.HasColumnType("TEXT");
b.Property<string>("ImageURL")
.HasColumnType("TEXT");
@ -81,6 +87,9 @@ namespace CocktailWeb.Migrations
b.HasIndex("FlascheId");
b.HasIndex("Type", "Pos")
.IsUnique();
b.ToTable("Fillers");
b.HasData(
@ -105,67 +114,67 @@ namespace CocktailWeb.Migrations
new
{
Id = 4,
Pos = 4,
Pos = 1,
Type = 1
},
new
{
Id = 5,
Pos = 5,
Pos = 2,
Type = 1
},
new
{
Id = 6,
Pos = 6,
Pos = 3,
Type = 1
},
new
{
Id = 7,
Pos = 7,
Pos = 4,
Type = 1
},
new
{
Id = 8,
Pos = 8,
Pos = 5,
Type = 1
},
new
{
Id = 9,
Pos = 9,
Pos = 6,
Type = 1
},
new
{
Id = 10,
Pos = 10,
Pos = 7,
Type = 1
},
new
{
Id = 11,
Pos = 11,
Pos = 8,
Type = 1
},
new
{
Id = 12,
Pos = 12,
Pos = 4,
Type = 0
},
new
{
Id = 13,
Pos = 13,
Pos = 5,
Type = 0
},
new
{
Id = 14,
Pos = 14,
Pos = 6,
Type = 0
});
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB