YD_SmartSports.Api/VOL.Core/Migrations/20250226085013_20150226v2.cs
2025-06-06 16:55:14 +08:00

29 lines
756 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace VOL.Core.Migrations
{
public partial class _20150226v2 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<DateTime>(
name: "CreateTime",
table: "S_HomeWork",
type: "datetime",
nullable: false,
defaultValueSql: "GETDATE()",
comment: "创建时间");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CreateTime",
table: "S_HomeWork");
}
}
}