51 lines
2.4 KiB
C#
51 lines
2.4 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace SVSim.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class MypagePaymentItems : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "PaymentItems",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false),
|
|
ProductId = table.Column<int>(type: "integer", nullable: false),
|
|
StoreProductId = table.Column<long>(type: "bigint", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Text = table.Column<string>(type: "text", nullable: false),
|
|
Price = table.Column<decimal>(type: "numeric", nullable: false),
|
|
ChargeCrystalNum = table.Column<int>(type: "integer", nullable: false),
|
|
FreeCrystalNum = table.Column<int>(type: "integer", nullable: false),
|
|
PurchaseLimit = table.Column<int>(type: "integer", nullable: false),
|
|
SpecialShopFlag = table.Column<int>(type: "integer", nullable: false),
|
|
ImageName = table.Column<string>(type: "text", nullable: false),
|
|
StartTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
EndTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
RemainingTime = table.Column<int>(type: "integer", nullable: false),
|
|
IsResaleProduct = table.Column<int>(type: "integer", nullable: false),
|
|
ResaleStartDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
DateCreated = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
DateUpdated = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_PaymentItems", x => x.Id);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "PaymentItems");
|
|
}
|
|
}
|
|
}
|