YD_SmartSports.Api/VOL.Core/Migrations/20250226085013_20150226v2.cs

29 lines
756 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
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,
2025-06-06 16:55:14 +08:00
defaultValueSql: "GETDATE()",
2025-06-06 16:00:39 +08:00
comment: "创建时间");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CreateTime",
table: "S_HomeWork");
}
}
}