Files
Assignment6/Data/Migrations/Postgres/20260329123153_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.6 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Example.Data.Migrations.Postgres
{
/// <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: "timestamp with time zone");
migrationBuilder.AlterColumn<DateTime>(
name: "Birthdate",
table: "Authors",
type: "date",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "timestamp with time zone");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<DateTime>(
name: "Published",
table: "Books",
type: "timestamp with time zone",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "date");
migrationBuilder.AlterColumn<DateTime>(
name: "Birthdate",
table: "Authors",
type: "timestamp with time zone",
nullable: false,
oldClrType: typeof(DateTime),
oldType: "date");
}
}
}