Chev
Chev
Explore posts from servers
DTDrizzle Team
Created by function on 1/30/2025 in #help
Get all authors with latest book
share what you have so far
11 replies
DTDrizzle Team
Created by Phantom on 1/4/2025 in #help
Drizzle not creating enum
you need include the enum in your exported schema
export const status = pgEnum('status', [
'created',
'generating',
'generated',
'error',
]);

export const Widget = pgTable('widget', {
status: status().notNull().default('created'),
...
export const status = pgEnum('status', [
'created',
'generating',
'generated',
'error',
]);

export const Widget = pgTable('widget', {
status: status().notNull().default('created'),
...
20 replies