using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FlexJobApi.Database.Migrations.Migrations { /// public partial class UpdateUser0811 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ContactPhoneNumber", table: "User", type: "nvarchar(11)", maxLength: 11, nullable: true); migrationBuilder.UpdateData( table: "User", keyColumn: "Id", keyValue: new Guid("11111111-1111-1111-1111-111111111111"), column: "ContactPhoneNumber", value: null); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ContactPhoneNumber", table: "User"); } } }