26 lines
676 B
C#
26 lines
676 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VOL.Core.Migrations
|
|
{
|
|
public partial class init014 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Nation",
|
|
table: "S_Student",
|
|
type: "nvarchar(20)",
|
|
nullable: true,
|
|
comment: "民族");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Nation",
|
|
table: "S_Student");
|
|
}
|
|
}
|
|
} |