mirror of
https://github.com/p-stream/backend.git
synced 2026-04-07 10:59:24 +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[];
|