Files
echospace/prisma/migrations/20241222223410_user_is_owner/migration.sql

6 lines
217 B
SQL

-- AlterTable
ALTER TABLE "Project" ALTER COLUMN "inviteCode" SET DEFAULT floor(random() * 90000000 + 10000000)::text;
-- AlterTable
ALTER TABLE "UserProject" ADD COLUMN "isOwner" BOOLEAN NOT NULL DEFAULT false;