mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
13 lines
469 B
C#
13 lines
469 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Marechai.Database.Migrations
|
|
{
|
|
public partial class AddCompanyLegalName : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder) =>
|
|
migrationBuilder.AddColumn<string>("LegalName", "companies", nullable: true);
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) =>
|
|
migrationBuilder.DropColumn("LegalName", "companies");
|
|
}
|
|
} |