mirror of
https://github.com/veganhacktivists/arabot.git
synced 2025-05-19 17:14:15 +02:00
11 lines
312 B
SQL
11 lines
312 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The primary key for the `user` table will be changed. If it partially fails, the table could be left without primary key constraint.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "user" DROP CONSTRAINT "user_pkey",
|
|
ALTER COLUMN "id" SET DATA TYPE VARCHAR(255),
|
|
ADD CONSTRAINT "user_pkey" PRIMARY KEY ("id");
|