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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|