mirror of
https://github.com/p-stream/backend.git
synced 2026-01-11 20:10:33 +00:00
9 lines
250 B
SQL
9 lines
250 B
SQL
/*
|
|
Warnings:
|
|
|
|
- The `group` column on the `bookmarks` table would be dropped and recreated. This will lead to data loss if there is data in the column.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "bookmarks" DROP COLUMN "group",
|
|
ADD COLUMN "group" TEXT[];
|