28 lines
717 B
C#
28 lines
717 B
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VOL.Core.Migrations
|
|
{
|
|
public partial class init100 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<DateTime>(
|
|
name: "CreateDate",
|
|
table: "I_SportsTestData",
|
|
type: "datetime",
|
|
nullable: true,
|
|
comment: "创建时间");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "CreateDate",
|
|
table: "I_SportsTestData");
|
|
}
|
|
}
|
|
}
|