using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ASC.Migrations.MySql.Migrations.TeamlabSite { public partial class TeamlabSiteContextMigrate : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterDatabase() .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateTable( name: "tenants_cache", columns: table => new { tenant_alias = table.Column(type: "varchar(100)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8") }, constraints: table => { table.PrimaryKey("PRIMARY", x => x.tenant_alias); }) .Annotation("MySql:CharSet", "utf8") .Annotation("Relational:Collation", "utf8_general_ci"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "tenants_cache"); } } }