nest-autocrud/prisma/migrations/20241102024042_account_username/migration.sql

13 lines
471 B
MySQL
Raw Permalink Normal View History

/*
Warnings:
- A unique constraint covering the columns `[username]` on the table `account` will be added. If there are existing duplicate values, this will fail.
- Added the required column `username` to the `account` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "account" ADD COLUMN "username" TEXT NOT NULL;
-- CreateIndex
CREATE UNIQUE INDEX "account_username_key" ON "account"("username");