bd1d4cf792
This migration renames the EmailTemplates table to Templates in the email schema. The migration was scaffolded by EF Core with manual RenameTable commands added. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
29 lines
800 B
C#
29 lines
800 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Email.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class RenameEmailTemplatesToTemplates : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameTable(
|
|
name: "EmailTemplates",
|
|
schema: MigrationConstants.SchemaName,
|
|
newName: "Templates");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameTable(
|
|
name: "Templates",
|
|
schema: MigrationConstants.SchemaName,
|
|
newName: "EmailTemplates");
|
|
}
|
|
}
|
|
}
|