Add migration to rename EmailTemplates table to Templates

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>
This commit is contained in:
2026-06-01 16:22:26 +03:00
parent 0bc860b1a7
commit bd1d4cf792
2 changed files with 97 additions and 0 deletions
@@ -0,0 +1,28 @@
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");
}
}
}