mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
10 lines
260 B
SQL
10 lines
260 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `isArchived` on the `projects` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "projects" DROP COLUMN "isArchived",
|
|
ADD COLUMN "is_archived" BOOLEAN NOT NULL DEFAULT false;
|