using System; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ASC.Migrations.MySql.Migrations { public partial class BackupsContextMigrate : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterDatabase() .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateTable( name: "backup_backup", columns: table => new { id = table.Column(type: "char(38)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), tenant_id = table.Column(type: "int(10)", nullable: false), is_scheduled = table.Column(type: "tinyint(1)", nullable: false), name = table.Column(type: "varchar(255)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), hash = table.Column(type: "varchar(64)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), storage_type = table.Column(type: "int(10)", nullable: false), storage_base_path = table.Column(type: "varchar(255)", nullable: true, defaultValueSql: "NULL", collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), storage_path = table.Column(type: "varchar(255)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), created_on = table.Column(type: "datetime", nullable: false), expires_on = table.Column(type: "datetime", nullable: false, defaultValueSql: "'0001-01-01 00:00:00'"), storage_params = table.Column(type: "text", nullable: true, defaultValueSql: "NULL", collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8") }, constraints: table => { table.PrimaryKey("PRIMARY", x => x.id); }) .Annotation("MySql:CharSet", "utf8"); migrationBuilder.CreateTable( name: "backup_schedule", columns: table => new { tenant_id = table.Column(type: "int(10)", nullable: false), backup_mail = table.Column(type: "tinyint(1)", nullable: false, defaultValueSql: "'0'"), cron = table.Column(type: "varchar(255)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), backups_stored = table.Column(type: "int(10)", nullable: false), storage_type = table.Column(type: "int(10)", nullable: false), storage_base_path = table.Column(type: "varchar(255)", nullable: true, defaultValueSql: "NULL", collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), last_backup_time = table.Column(type: "datetime", nullable: false), storage_params = table.Column(type: "text", nullable: true, defaultValueSql: "NULL", collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8") }, constraints: table => { table.PrimaryKey("PRIMARY", x => x.tenant_id); }) .Annotation("MySql:CharSet", "utf8"); migrationBuilder.CreateTable( name: "tenants_tenants", columns: table => new { id = table.Column(type: "int", nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), name = table.Column(type: "varchar(255)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), alias = table.Column(type: "varchar(100)", nullable: false, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), mappeddomain = table.Column(type: "varchar(100)", nullable: true, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), version = table.Column(type: "int", nullable: false, defaultValueSql: "'2'"), version_changed = table.Column(type: "datetime", nullable: true), language = table.Column(type: "char(10)", nullable: false, defaultValueSql: "'en-US'", collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), timezone = table.Column(type: "varchar(50)", nullable: true, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), trusteddomains = table.Column(type: "varchar(1024)", nullable: true, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), trusteddomainsenabled = table.Column(type: "int", nullable: false, defaultValueSql: "'1'"), status = table.Column(type: "int", nullable: false, defaultValueSql: "'0'"), statuschanged = table.Column(type: "datetime", nullable: true), creationdatetime = table.Column(type: "datetime", nullable: false), owner_id = table.Column(type: "varchar(38)", nullable: true, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), payment_id = table.Column(type: "varchar(38)", nullable: true, collation: "utf8_general_ci") .Annotation("MySql:CharSet", "utf8"), industry = table.Column(type: "int", nullable: false, defaultValueSql: "'0'"), last_modified = table.Column(type: "timestamp", nullable: false), spam = table.Column(type: "tinyint(1)", nullable: false, defaultValueSql: "'1'"), calls = table.Column(type: "tinyint(1)", nullable: false, defaultValueSql: "'1'") }, constraints: table => { table.PrimaryKey("PK_tenants_tenants", x => x.id); }) .Annotation("MySql:CharSet", "utf8"); migrationBuilder.InsertData( table: "tenants_tenants", columns: new[] { "id", "alias", "creationdatetime", "last_modified", "mappeddomain", "name", "owner_id", "payment_id", "statuschanged", "timezone", "trusteddomains", "version_changed" }, values: new object[] { 1, "localhost", new DateTime(2021, 3, 9, 17, 46, 59, 97, DateTimeKind.Utc).AddTicks(4317), new DateTime(2022, 7, 8, 0, 0, 0, 0, DateTimeKind.Unspecified), null, "Web Office", "66faa6e4-f133-11ea-b126-00ffeec8b4ef", null, null, null, null, null }); migrationBuilder.CreateIndex( name: "expires_on", table: "backup_backup", column: "expires_on"); migrationBuilder.CreateIndex( name: "is_scheduled", table: "backup_backup", column: "is_scheduled"); migrationBuilder.CreateIndex( name: "tenant_id", table: "backup_backup", column: "tenant_id"); migrationBuilder.CreateIndex( name: "alias", table: "tenants_tenants", column: "alias", unique: true); migrationBuilder.CreateIndex( name: "last_modified", table: "tenants_tenants", column: "last_modified"); migrationBuilder.CreateIndex( name: "mappeddomain", table: "tenants_tenants", column: "mappeddomain"); migrationBuilder.CreateIndex( name: "version", table: "tenants_tenants", column: "version"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "backup_backup"); migrationBuilder.DropTable( name: "backup_schedule"); migrationBuilder.DropTable( name: "tenants_tenants"); } } }