Skip to content

Commit

Permalink
feat: enable tsm_system_rows extension
Browse files Browse the repository at this point in the history
  • Loading branch information
AstreaTSS committed Nov 5, 2024
1 parent 3217376 commit bd8bb14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions migrations/20241105001852_ext_system_rows/migration.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- CreateExtension
CREATE EXTENSION IF NOT EXISTS "tsm_system_rows";
3 changes: 2 additions & 1 deletion schema.prisma
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
datasource db {
provider = "postgresql"
url = env("DB_URL")
extensions = [tsm_system_rows]
}

generator client {
provider = "prisma-client-py"
previewFeatures = ["nativeDistinct", "relationJoins"]
previewFeatures = ["nativeDistinct", "relationJoins", "postgresqlExtensions"]
interface = "asyncio"
recursive_type_depth = -1
}
Expand Down

0 comments on commit bd8bb14

Please sign in to comment.