40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
|
|
|
|
namespace CocktailWeb.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class SeedData : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.InsertData(
|
|
table: "Flaschen",
|
|
columns: new[] { "Id", "Name", "Pos" },
|
|
values: new object[,]
|
|
{
|
|
{ 1, "Jägermeister", null },
|
|
{ 2, "Wodka", null }
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DeleteData(
|
|
table: "Flaschen",
|
|
keyColumn: "Id",
|
|
keyValue: 1);
|
|
|
|
migrationBuilder.DeleteData(
|
|
table: "Flaschen",
|
|
keyColumn: "Id",
|
|
keyValue: 2);
|
|
}
|
|
}
|
|
}
|