29 lines
756 B
C#
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");
|
|
}
|
|
}
|
|
}
|