using System; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Moonlight.ApiServer.Database.Migrations { /// public partial class AddedBasicUserModel : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.EnsureSchema( name: "Core"); migrationBuilder.AlterDatabase() .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.CreateTable( name: "Users", schema: "Core", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), Username = table.Column(type: "longtext", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"), Email = table.Column(type: "longtext", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"), Password = table.Column(type: "longtext", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"), TokenValidTimestamp = table.Column(type: "datetime(6)", nullable: false), PermissionsJson = table.Column(type: "longtext", nullable: false) .Annotation("MySql:CharSet", "utf8mb4") }, constraints: table => { table.PrimaryKey("PK_Users", x => x.Id); }) .Annotation("MySql:CharSet", "utf8mb4"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Users", schema: "Core"); } } }