Files
jobtrackingapp/JobTrackerApi/Migrations/20260730203422_AddAiUsageMetering.cs
T
cesnimda c08232b9d7
CI and Deploy / test (push) Failing after 58s
CI and Deploy / deploy (push) Has been skipped
feat: meter AI usage
2026-07-30 22:39:24 +02:00

24 lines
730 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace JobTrackerApi.Migrations
{
/// <inheritdoc />
public partial class AddAiUsageMetering : Migration
{
// Intentionally a no-op: StartupInitializationExtensions owns idempotent SQLite/MariaDB
// column reconciliation and runs before EF migrations. The snapshot records the model change;
// the reconciler performs the provider-safe DDL without duplicate-column failures.
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}