YD_SmartSports.Api/VOL.Core/Migrations/20250226084621_20150226v2.cs

40 lines
1.1 KiB
C#
Raw Normal View History

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,
defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified),
comment: "创建时间");
migrationBuilder.AddColumn<string>(
name: "GroupId",
table: "Ai_FastJumpRopeData",
type: "nvarchar(100)",
nullable: true,
comment: "GroupId");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "CreateTime",
table: "S_HomeWork");
migrationBuilder.DropColumn(
name: "GroupId",
table: "Ai_FastJumpRopeData");
}
}
}