42 lines
1.6 KiB
C#
42 lines
1.6 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace ClaudeDo.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddPrimeSchedules : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "prime_schedules",
|
|
columns: table => new
|
|
{
|
|
id = table.Column<Guid>(type: "TEXT", nullable: false),
|
|
start_date = table.Column<DateOnly>(type: "TEXT", nullable: false),
|
|
end_date = table.Column<DateOnly>(type: "TEXT", nullable: false),
|
|
time_of_day = table.Column<TimeSpan>(type: "TEXT", nullable: false),
|
|
workdays_only = table.Column<bool>(type: "INTEGER", nullable: false, defaultValue: true),
|
|
enabled = table.Column<bool>(type: "INTEGER", nullable: false, defaultValue: true),
|
|
last_run_at = table.Column<DateTimeOffset>(type: "TEXT", nullable: true),
|
|
prompt_override = table.Column<string>(type: "TEXT", nullable: true),
|
|
created_at = table.Column<DateTimeOffset>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_prime_schedules", x => x.id);
|
|
});
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "prime_schedules");
|
|
}
|
|
}
|
|
}
|