We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d0adf commit 121aeb5Copy full SHA for 121aeb5
…50913204036_project_tags_1/migration.sql …0250913204036_project_tags/migration.sqlpackages/prisma-client/prisma/migrations/20250913204036_project_tags_1/migration.sql renamed to packages/prisma-client/prisma/migrations/20250913204036_project_tags/migration.sql
@@ -3,6 +3,11 @@ ALTER TABLE
3
ADD
4
COLUMN "tags" TEXT [];
5
6
+ALTER TABLE
7
+ "User"
8
+ADD
9
+ COLUMN "projectsTags" JSONB;
10
+
11
DROP VIEW IF EXISTS "DashboardProject";
12
13
CREATE VIEW "DashboardProject" AS
@@ -28,10 +33,4 @@ SELECT
28
33
)
29
34
) AS "isPublished"
30
35
FROM
31
- "Project";
32
-
--- AlterTable
-ALTER TABLE
- "User"
36
-ADD
37
- COLUMN "projectsTags" JSONB;
+ "Project";
0 commit comments