using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Bimix.Infrastructure.Migrations { /// public partial class AddSyncState : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "SyncStates", columns: table => new { Entity = table.Column(type: "nvarchar(450)", nullable: false), LastSynced = table.Column(type: "bigint", nullable: false) }, constraints: table => { table.PrimaryKey("PK_SyncStates", x => x.Entity); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "SyncStates"); } } }