29 lines
795 B
C#
29 lines
795 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Marco.Pms.DataAccess.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Fixed_Spelling_Mistake_In_Tenant_Table : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "OragnizationSize",
|
|
table: "Tenants",
|
|
newName: "OrganizationSize");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "OrganizationSize",
|
|
table: "Tenants",
|
|
newName: "OragnizationSize");
|
|
}
|
|
}
|
|
}
|