using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Church.Net.DAL.EFCoreDBF.Migrations { public partial class LineMessageAccount : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "LineMessagingAccounts", columns: table => new { Id = table.Column(type: "text", nullable: false), Name = table.Column(type: "text", nullable: true), ChatToken = table.Column(type: "text", nullable: true), TotalUsage = table.Column(type: "integer", nullable: false), Seq = table.Column(type: "integer", nullable: false) }, constraints: table => { table.PrimaryKey("PK_LineMessagingAccounts", x => x.Id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "LineMessagingAccounts"); } } }