using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Avalonia_EFCore.Migrations.SQLite { /// public partial class AutoMigration_20260515152037 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "phone-number", table: "user", type: "TEXT", maxLength: 50, nullable: true, comment: "电话号码"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "phone-number", table: "user"); } } }