35 lines
1.5 KiB
SQL
35 lines
1.5 KiB
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `email` on the `User` table. All the data in the column will be lost.
|
|
- A unique constraint covering the columns `[phone]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
- A unique constraint covering the columns `[wechatMiniOpenId]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
- A unique constraint covering the columns `[wechatOfficialOpenId]` on the table `User` will be added. If there are existing duplicate values, this will fail.
|
|
- Added the required column `passwordHash` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `phone` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- DropIndex
|
|
DROP INDEX "User_email_key";
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "email",
|
|
ADD COLUMN "isActive" BOOLEAN NOT NULL DEFAULT true,
|
|
ADD COLUMN "lastLoginAt" TIMESTAMP(3),
|
|
ADD COLUMN "passwordHash" TEXT NOT NULL,
|
|
ADD COLUMN "phone" TEXT NOT NULL,
|
|
ADD COLUMN "wechatMiniOpenId" TEXT,
|
|
ADD COLUMN "wechatOfficialOpenId" TEXT;
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "User_phone_key" ON "User"("phone");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "User_wechatMiniOpenId_key" ON "User"("wechatMiniOpenId");
|
|
|
|
-- CreateIndex
|
|
CREATE UNIQUE INDEX "User_wechatOfficialOpenId_key" ON "User"("wechatOfficialOpenId");
|
|
|
|
-- CreateIndex
|
|
CREATE INDEX "User_phone_isActive_idx" ON "User"("phone", "isActive");
|