using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Authinator.Migrations { /// public partial class D99E1078A3A443E9BA5A5E0B00723B68 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Username", table: "Users", type: "TEXT", nullable: true, oldClrType: typeof(string), oldType: "TEXT"); migrationBuilder.AlterColumn( name: "Password", table: "Users", type: "TEXT", nullable: true, oldClrType: typeof(string), oldType: "TEXT"); migrationBuilder.AddColumn( name: "Reference", table: "Users", type: "TEXT", nullable: false, defaultValue: ""); migrationBuilder.CreateTable( name: "Groups", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), Name = table.Column(type: "TEXT", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Groups", x => x.Id); }); migrationBuilder.CreateTable( name: "GroupUser", columns: table => new { GroupsId = table.Column(type: "INTEGER", nullable: false), UserId = table.Column(type: "INTEGER", nullable: false) }, constraints: table => { table.PrimaryKey("PK_GroupUser", x => new { x.GroupsId, x.UserId }); table.ForeignKey( name: "FK_GroupUser_Groups_GroupsId", column: x => x.GroupsId, principalTable: "Groups", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_GroupUser_Users_UserId", column: x => x.UserId, principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_GroupUser_UserId", table: "GroupUser", column: "UserId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "GroupUser"); migrationBuilder.DropTable( name: "Groups"); migrationBuilder.DropColumn( name: "Reference", table: "Users"); migrationBuilder.AlterColumn( name: "Username", table: "Users", type: "TEXT", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldNullable: true); migrationBuilder.AlterColumn( name: "Password", table: "Users", type: "TEXT", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "TEXT", oldNullable: true); } } }