using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AsbCloudDb.Migrations { public partial class Remove_fileShare_service : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "publish_info", table: "t_file_info"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "publish_info", table: "t_file_info", type: "jsonb", nullable: true, comment: "Информация о файле в облаке"); } } }