goto3
goto3
DTDrizzle Team
Created by Drew on 3/28/2024 in #help
setting up AWS with Drizzle
const rdsClient = new RDSDataClient({ credentials: fromIni({ profile: process.env['PROFILE'] }), region: 'us-east-1', });
6 replies
DTDrizzle Team
Created by Drew on 3/28/2024 in #help
setting up AWS with Drizzle
No description
6 replies
DTDrizzle Team
Created by Drew on 3/28/2024 in #help
setting up AWS with Drizzle
the region
6 replies
DTDrizzle Team
Created by alka_99 on 3/18/2024 in #help
Auto Increment custom id with prefix GRO
Something like this?
const createId () => (`GRO${String(Math.floor(Math.random() * 10000)).padStart(4, '0')}`)
id: text('id').$defaultFn(() => createId())
const createId () => (`GRO${String(Math.floor(Math.random() * 10000)).padStart(4, '0')}`)
id: text('id').$defaultFn(() => createId())
11 replies