11 lines
382 B
SQL
11 lines
382 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `partnerId` on the `User` table. All the data in the column will be lost.
|
|
- Added the required column `merchantPartnerId` to the `User` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "User" DROP COLUMN "partnerId",
|
|
ADD COLUMN "merchantPartnerId" TEXT NOT NULL;
|