fix: Adds password into User schema.

This commit is contained in:
greysoh 2024-04-17 11:34:31 -04:00
parent dfc258bde6
commit 6d0fc93138
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/*
Warnings:
- Added the required column `password` to the `User` table without a default value. This is not possible if the table is not empty.
*/
-- RedefineTables
PRAGMA foreign_keys=OFF;
CREATE TABLE "new_User" (
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
"email" TEXT NOT NULL,
"name" TEXT,
"password" TEXT NOT NULL,
"rootToken" TEXT
);
INSERT INTO "new_User" ("email", "id", "name", "rootToken") SELECT "email", "id", "name", "rootToken" FROM "User";
DROP TABLE "User";
ALTER TABLE "new_User" RENAME TO "User";
CREATE UNIQUE INDEX "User_email_key" ON "User"("email");
PRAGMA foreign_key_check;
PRAGMA foreign_keys=ON;