36 lines
1.4 KiB
SQL
36 lines
1.4 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `contactAddressId` on the `User` table. All the data in the column will be lost.
|
|
- Added the required column `hashedPassword` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `salt` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- CreateTable
|
|
CREATE TABLE "UserToContactAddress" (
|
|
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
|
"userId" TEXT NOT NULL,
|
|
"contactAddressId" TEXT NOT NULL,
|
|
CONSTRAINT "UserToContactAddress_userId_fkey" FOREIGN KEY ("userId") REFERENCES "User" ("id") ON DELETE RESTRICT ON UPDATE CASCADE,
|
|
CONSTRAINT "UserToContactAddress_contactAddressId_fkey" FOREIGN KEY ("contactAddressId") REFERENCES "ContactAddress" ("id") ON DELETE RESTRICT ON UPDATE CASCADE
|
|
);
|
|
|
|
-- RedefineTables
|
|
PRAGMA defer_foreign_keys=ON;
|
|
PRAGMA foreign_keys=OFF;
|
|
CREATE TABLE "new_User" (
|
|
"id" TEXT NOT NULL PRIMARY KEY,
|
|
"userId" TEXT NOT NULL,
|
|
"email" TEXT NOT NULL,
|
|
"hashedPassword" TEXT NOT NULL,
|
|
"salt" TEXT NOT NULL,
|
|
"resetToken" TEXT,
|
|
"resetTokenExpiresAt" DATETIME
|
|
);
|
|
INSERT INTO "new_User" ("email", "id", "userId") SELECT "email", "id", "userId" FROM "User";
|
|
DROP TABLE "User";
|
|
ALTER TABLE "new_User" RENAME TO "User";
|
|
CREATE UNIQUE INDEX "User_userId_key" ON "User"("userId");
|
|
PRAGMA foreign_keys=ON;
|
|
PRAGMA defer_foreign_keys=OFF;
|