Skip to content
Discussion options

You must be logged in to vote

blinko is tightly coupled to PostgreSQL. The Prisma schema explicitly sets the provider to PostgreSQL and uses Postgres-specific types like @db.Timestamptz(6) and @db.VarChar, which are not supported by SQLite. The migration SQL files also use PostgreSQL-only features such as SERIAL for auto-incrementing IDs and TIMESTAMPTZ for timestamps with time zone, making the schema and migrations incompatible with SQLite out of the box. Switching to SQLite would require significant manual changes to the schema and migration files to remove these Postgres-specific features and adapt to SQLite's capabilities. There are no code-level raw queries that block SQLite, but the schema and migration layer i…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by wsw70
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant