using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MyOffice.Migrations.Postgres.Migrations { /// public partial class PrimaryCurrencyDeletedMotion : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DeletedOn", table: "Motions", type: "timestamp with time zone", nullable: true); migrationBuilder.AddColumn( name: "IsPrimary", table: "Currencies", type: "boolean", nullable: false, defaultValue: false); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "DeletedOn", table: "Motions"); migrationBuilder.DropColumn( name: "IsPrimary", table: "Currencies"); } } }