using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Blahblah.FlowerStory.Server.Migrations { /// public partial class AddPhotoSize : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "height", table: "photos", type: "INTEGER", nullable: true); migrationBuilder.AddColumn( name: "width", table: "photos", type: "INTEGER", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "height", table: "photos"); migrationBuilder.DropColumn( name: "width", table: "photos"); } } }