Files
Assignment6/Data/Migrations/Sqlite/20260329123145_DateOnlyColumns.cs
Chris 30a86a5890
All checks were successful
Build and Push Docker Image / docker (push) Successful in 48s
reworking git structure
2026-04-08 12:30:29 +00:00

52 lines
1.5 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Example.Data.Migrations.Sqlite
{
/// <inheritdoc />
public partial class DateOnlyColumns : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<DateTime>(
name: "Published",
table: "Books",
type: "date",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "TEXT");
migrationBuilder.AlterColumn<DateTime>(
name: "Birthdate",
table: "Authors",
type: "date",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "TEXT");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<DateTime>(
name: "Published",
table: "Books",
type: "TEXT",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "date");
migrationBuilder.AlterColumn<DateTime>(
name: "Birthdate",
table: "Authors",
type: "TEXT",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "date");
}
}
}