39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VOL.Core.Migrations
|
|
{
|
|
public partial class init071 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|
name: "UploadTime",
|
|
table: "Ai_SportsTestData",
|
|
type: "datetime",
|
|
nullable: false,
|
|
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified),
|
|
comment: "上传时间",
|
|
oldClrType: typeof(DateTime),
|
|
oldType: "datetime",
|
|
oldNullable: true,
|
|
oldComment: "上传时间");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<DateTime>(
|
|
name: "UploadTime",
|
|
table: "Ai_SportsTestData",
|
|
type: "datetime",
|
|
nullable: true,
|
|
comment: "上传时间",
|
|
oldClrType: typeof(DateTime),
|
|
oldType: "datetime",
|
|
oldComment: "上传时间");
|
|
}
|
|
}
|
|
}
|