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