using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace timetracker.Data.Migrations { /// public partial class AddTenantBranding : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsTenantAdmin", table: "Users", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "PrimaryColor", table: "Tenants", type: "TEXT", nullable: false, defaultValue: ""); migrationBuilder.AddColumn( name: "SecondaryColor", table: "Tenants", type: "TEXT", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsTenantAdmin", table: "Users"); migrationBuilder.DropColumn( name: "PrimaryColor", table: "Tenants"); migrationBuilder.DropColumn( name: "SecondaryColor", table: "Tenants"); } } }