mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
17 lines
541 B
C#
17 lines
541 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace Cicm.Database.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class AddPreRenderedCompanyDescription : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AddColumn<string>("Html", "CompanyDescriptions", maxLength: 262144, nullable: true);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropColumn("Html", "CompanyDescriptions");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|