21 lines
656 B
SQL
21 lines
656 B
SQL
/*
|
|
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;
|