using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace API.Data.Migrations { /// public partial class AddLocaleOnPrefs : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Locale", table: "AppUserPreferences", type: "TEXT", nullable: false, defaultValue: "en"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Locale", table: "AppUserPreferences"); } } }