FileShare/FileShare-EFCore/Migrations/SQLite/20260520083230_AutoMigration_20260520163216.cs

31 lines
824 B
C#
Raw Permalink Normal View History

2026-05-22 14:29:22 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
2026-05-21 15:52:36 +08:00
#nullable disable
2026-05-22 14:29:22 +08:00
namespace FileShare_EFCore.Migrations.SQLite
2026-05-21 15:52:36 +08:00
{
/// <inheritdoc />
public partial class AutoMigration_20260520163216 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "password-hash",
table: "user",
type: "TEXT",
maxLength: 200,
nullable: true,
comment: "密码哈希值");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "password-hash",
table: "user");
}
}
}