Files
Anatolii Grynchuk 73b506992c feat: add EF migrations and design-time factory
- Fix EmailEmailTemplateEntityConfiguration -> EmailTemplateEntityConfiguration
- Rename tables to match domain: templates->email_templates,
  providers->email_channels, provider_usage->email_channel_usage
- Add NotificationDbContextFactory for design-time migrations tooling
- Add InitialCreate migration: email_templates, email_channels, email_channel_usage

Ref: IT-628

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-02 00:46:49 +03:00

103 lines
4.8 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace HrynCo.NotificationService.DAL.EF.Migrations
{
/// <inheritdoc />
public partial class InitialCreate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "email_channel_usage",
columns: table => new
{
id = table.Column<Guid>(type: "uuid", nullable: false),
provider_id = table.Column<Guid>(type: "uuid", nullable: false),
date = table.Column<DateOnly>(type: "date", nullable: false),
sent_count = table.Column<int>(type: "integer", nullable: false),
created = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
updated = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_email_channel_usage", x => x.id);
});
migrationBuilder.CreateTable(
name: "email_channels",
columns: table => new
{
id = table.Column<Guid>(type: "uuid", nullable: false),
service_name = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
priority = table.Column<int>(type: "integer", nullable: false),
provider_type = table.Column<int>(type: "integer", nullable: false),
settings = table.Column<string>(type: "jsonb", nullable: false),
daily_limit = table.Column<int>(type: "integer", nullable: true),
monthly_limit = table.Column<int>(type: "integer", nullable: true),
warn_threshold_percent = table.Column<int>(type: "integer", nullable: false),
is_active = table.Column<bool>(type: "boolean", nullable: false),
created = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
updated = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_email_channels", x => x.id);
});
migrationBuilder.CreateTable(
name: "email_templates",
columns: table => new
{
id = table.Column<Guid>(type: "uuid", nullable: false),
service_name = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
key = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
language_code = table.Column<string>(type: "character varying(10)", maxLength: 10, nullable: false),
subject = table.Column<string>(type: "text", nullable: false),
html_body = table.Column<string>(type: "text", nullable: false),
text_body = table.Column<string>(type: "text", nullable: false),
created = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: false),
updated = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
variables = table.Column<string>(type: "jsonb", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_email_templates", x => x.id);
});
migrationBuilder.CreateIndex(
name: "IX_email_channel_usage_provider_id_date",
table: "email_channel_usage",
columns: new[] { "provider_id", "date" },
unique: true);
migrationBuilder.CreateIndex(
name: "IX_email_channels_service_name_priority",
table: "email_channels",
columns: new[] { "service_name", "priority" });
migrationBuilder.CreateIndex(
name: "IX_email_templates_service_name_key_language_code",
table: "email_templates",
columns: new[] { "service_name", "key", "language_code" },
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "email_channel_usage");
migrationBuilder.DropTable(
name: "email_channels");
migrationBuilder.DropTable(
name: "email_templates");
}
}
}