using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Nexus.Api.Migrations { /// public partial class AddSeedAudit : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "SeedAudit", columns: table => new { Key = table.Column(type: "character varying(80)", maxLength: 80, nullable: false), CreatedAt = table.Column(type: "timestamp with time zone", nullable: false) }, constraints: table => { table.PrimaryKey("PK_SeedAudit", x => x.Key); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "SeedAudit"); } } }