59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VOL.Core.Migrations
|
|
{
|
|
public partial class init008 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "SchoolCode",
|
|
table: "S_Student",
|
|
type: "nvarchar(100)",
|
|
nullable: true,
|
|
comment: "学校编号");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "SchoolCode",
|
|
table: "S_Grade",
|
|
type: "nvarchar(100)",
|
|
nullable: true,
|
|
comment: "学校编号");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "SchoolCode",
|
|
table: "S_Class",
|
|
type: "nvarchar(100)",
|
|
nullable: true,
|
|
comment: "学校编号");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "SchoolCode",
|
|
table: "N_SportsTestValue",
|
|
type: "nvarchar(100)",
|
|
nullable: true,
|
|
comment: "学校编号");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "SchoolCode",
|
|
table: "S_Student");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "SchoolCode",
|
|
table: "S_Grade");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "SchoolCode",
|
|
table: "S_Class");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "SchoolCode",
|
|
table: "N_SportsTestValue");
|
|
}
|
|
}
|
|
} |