2019-05-18 18:38:40 +01:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
2020-02-10 02:10:18 +00:00
|
|
|
|
namespace Marechai.Database.Migrations
|
2019-05-18 18:38:40 +01:00
|
|
|
|
{
|
|
|
|
|
|
public partial class AddPreRenderedCompanyDescription : Migration
|
|
|
|
|
|
{
|
2020-02-10 22:44:18 +00:00
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder) =>
|
2019-05-18 18:38:40 +01:00
|
|
|
|
migrationBuilder.AddColumn<string>("Html", "CompanyDescriptions", maxLength: 262144, nullable: true);
|
|
|
|
|
|
|
2020-02-10 22:44:18 +00:00
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) =>
|
2019-05-18 18:38:40 +01:00
|
|
|
|
migrationBuilder.DropColumn("Html", "CompanyDescriptions");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|