using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace DysonNetwork.Zone.Migrations { /// public partial class AddSiteMode : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "preset", table: "publication_pages"); migrationBuilder.AddColumn( name: "mode", table: "publication_sites", type: "integer", nullable: false, defaultValue: 0); migrationBuilder.AddColumn( name: "type", table: "publication_pages", type: "integer", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "mode", table: "publication_sites"); migrationBuilder.DropColumn( name: "type", table: "publication_pages"); migrationBuilder.AddColumn( name: "preset", table: "publication_pages", type: "character varying(8192)", maxLength: 8192, nullable: false, defaultValue: ""); } } }