DoggeSlapper
DoggeSlapper
DTDrizzle Team
Created by DoggeSlapper on 10/14/2024 in #help
Extend/omit from table schema.
only solution so far is have the columns object as another variable and create both tables form that
2 replies
DTDrizzle Team
Created by Tarek on 10/15/2024 in #help
Manual Migrations
Again this shouldnt be the way to work with migrations you defeating the whole porpouse if migrations with this
5 replies
DTDrizzle Team
Created by Tarek on 10/15/2024 in #help
Manual Migrations
or check the hash urself
5 replies
DTDrizzle Team
Created by Tarek on 10/15/2024 in #help
Manual Migrations
that's not recommeneded, if u 100% sure it's matching I guess the easiest would be run migrations in another db and copy the related entries to ur migrations
5 replies
DTDrizzle Team
Created by Sadra on 9/22/2023 in #help
how enable wal for sqlite with drizzle ?
sqlite.pragma("journal_mode = WAL");
7 replies
DTDrizzle Team
Created by Sadra on 9/22/2023 in #help
how enable wal for sqlite with drizzle ?
it should be in client level not drizzle
7 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
hahahah
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
funny enough I paste doc but didnt notice the error hehehe
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
so that's the reason why u blocking it
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
u using db not tx
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
wait I saw the problem
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
I suspect it's lock on first insert
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
I'm not using sqlite myself so cant really help much sorry that were my 2 cents 🙂
23 replies
DTDrizzle Team
Created by edarcode on 10/14/2024 in #help
transations
what if u had some console log? get some info there?
23 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
strange, just to doublecehck try
const {
PGHOST: host,
PGUSER: user,
PGDATABASE: database,
PGPASSWORD: password,
} = process.env;

export const connectionString = `postgresql://${user}:${encodeURIComponent(password)}@${host}`;
const {
PGHOST: host,
PGUSER: user,
PGDATABASE: database,
PGPASSWORD: password,
} = process.env;

export const connectionString = `postgresql://${user}:${encodeURIComponent(password)}@${host}`;
10 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
do u have any $ in it?
10 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
It might be related to ur password
10 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
wait's I though it was on drizzle kit my bad
10 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
try the non pool connection there
10 replies
DTDrizzle Team
Created by Samiihh on 10/14/2024 in #help
Help with the connection between Drizzle and Supabase
what error u getting?
10 replies