47 lines
1.7 KiB
C#
47 lines
1.7 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
namespace NadekoBot.Migrations
|
|||
|
{
|
|||
|
public partial class waifuitems : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "WaifuItem",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(nullable: false)
|
|||
|
.Annotation("Sqlite:Autoincrement", true),
|
|||
|
DateAdded = table.Column<DateTime>(nullable: true),
|
|||
|
Item = table.Column<int>(nullable: false),
|
|||
|
ItemEmoji = table.Column<string>(nullable: true),
|
|||
|
Price = table.Column<int>(nullable: false),
|
|||
|
WaifuInfoId = table.Column<int>(nullable: true)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_WaifuItem", x => x.Id);
|
|||
|
table.ForeignKey(
|
|||
|
name: "FK_WaifuItem_WaifuInfo_WaifuInfoId",
|
|||
|
column: x => x.WaifuInfoId,
|
|||
|
principalTable: "WaifuInfo",
|
|||
|
principalColumn: "Id",
|
|||
|
onDelete: ReferentialAction.Restrict);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_WaifuItem_WaifuInfoId",
|
|||
|
table: "WaifuItem",
|
|||
|
column: "WaifuInfoId");
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "WaifuItem");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|