using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Meezi.Infrastructure.Data.Migrations { /// public partial class AddCafePublicProfile : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "GalleryJson", table: "Cafes", type: "text", nullable: true); migrationBuilder.AddColumn( name: "InstagramHandle", table: "Cafes", type: "text", nullable: true); migrationBuilder.AddColumn( name: "WebsiteUrl", table: "Cafes", type: "text", nullable: true); migrationBuilder.AddColumn( name: "WorkingHoursJson", table: "Cafes", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "GalleryJson", table: "Cafes"); migrationBuilder.DropColumn( name: "InstagramHandle", table: "Cafes"); migrationBuilder.DropColumn( name: "WebsiteUrl", table: "Cafes"); migrationBuilder.DropColumn( name: "WorkingHoursJson", table: "Cafes"); } } }