71 lines
2.7 KiB
C#
71 lines
2.7 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace ThAmCo.Stock.Data.Migrations
|
|
{
|
|
public partial class InitialCreate : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Prices",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(nullable: false)
|
|
.Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn),
|
|
ProductStockId = table.Column<int>(nullable: false),
|
|
ProductPrice = table.Column<double>(nullable: false),
|
|
Date = table.Column<DateTime>(nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Prices", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "ProductStocks",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(nullable: false)
|
|
.Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn),
|
|
ProductId = table.Column<int>(nullable: false),
|
|
Stock = table.Column<int>(nullable: false),
|
|
PriceId = table.Column<int>(nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_ProductStocks", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.InsertData(
|
|
table: "Prices",
|
|
columns: new[] { "Id", "Date", "ProductPrice", "ProductStockId" },
|
|
values: new object[,]
|
|
{
|
|
{ 1, new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), 9.9900000000000002, 1 },
|
|
{ 2, new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), 8.9900000000000002, 1 },
|
|
{ 3, new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified), 17.989999999999998, 2 }
|
|
});
|
|
|
|
migrationBuilder.InsertData(
|
|
table: "ProductStocks",
|
|
columns: new[] { "Id", "PriceId", "ProductId", "Stock" },
|
|
values: new object[,]
|
|
{
|
|
{ 1, 2, 1, 4 },
|
|
{ 2, 3, 2, 42 }
|
|
});
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Prices");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "ProductStocks");
|
|
}
|
|
}
|
|
}
|