using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace MyOffice.Migrations.Sqlite.Migrations { /// public partial class phone : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Phone", table: "Users", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Phone", table: "Users"); } } }