⚡Z.E.U.S⚡
⚡Z.E.U.S⚡
DTDrizzle Team
Created by SantaChris on 3/23/2025 in #help
Drizzle Studio bug report with error context, local libsql.
@SantaChris Hey! This should be fixed by now.
2 replies
DTDrizzle Team
Created by MatiasB. on 3/26/2025 in #help
Error in Drizzle.studio
@MatiasB. Hey! Can you provide your drizzle schema?
3 replies
DTDrizzle Team
Created by 👾Rnbsov on 3/16/2025 in #help
DrizzleOrm + GraphQL + NestJs
Hey! Have you tried drizzle-graphql ?
9 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
What exactly are you trying to run?
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
Does the error still occur?
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
No description
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
After these fixes the studio should start.
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
The same applies to associated_users in user_roles_relations.
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
Secondly, content_generation_accounts_relations has many scripts but you can't link them so it's probably not needed.
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
First, user_app_preference_relations has 3 one relationships with ai_model but ai_model has only one many. You need to add it like this:
export const user_app_preference_relations = relations(user_app_preference, ({ one }) => ({
app: one(app, {
fields: [user_app_preference.app_id],
references: [app.id]
}),
profile: one(profile, {
fields: [user_app_preference.user_id],
references: [profile.user_id]
}),
text_model: one(ai_model, {
fields: [user_app_preference.text_model_id],
references: [ai_model.id],
relationName: 'text_model'
}),
image_model: one(ai_model, {
fields: [user_app_preference.image_model_id],
references: [ai_model.id],
relationName: 'image_model'
}),
voice_model: one(ai_model, {
fields: [user_app_preference.voice_model_id],
references: [ai_model.id],
relationName: 'voice_model'
})
}));

export const ai_model_relations = relations(ai_model, ({ many }) => ({
text_model: many(user_app_preference, {
relationName: 'text_model'
}),
image_model: many(user_app_preference, {
relationName: 'image_model'
}),
voice_model: many(user_app_preference, {
relationName: 'voice_model'
}),
usages: many(usage_log)
}));
export const user_app_preference_relations = relations(user_app_preference, ({ one }) => ({
app: one(app, {
fields: [user_app_preference.app_id],
references: [app.id]
}),
profile: one(profile, {
fields: [user_app_preference.user_id],
references: [profile.user_id]
}),
text_model: one(ai_model, {
fields: [user_app_preference.text_model_id],
references: [ai_model.id],
relationName: 'text_model'
}),
image_model: one(ai_model, {
fields: [user_app_preference.image_model_id],
references: [ai_model.id],
relationName: 'image_model'
}),
voice_model: one(ai_model, {
fields: [user_app_preference.voice_model_id],
references: [ai_model.id],
relationName: 'voice_model'
})
}));

export const ai_model_relations = relations(ai_model, ({ many }) => ({
text_model: many(user_app_preference, {
relationName: 'text_model'
}),
image_model: many(user_app_preference, {
relationName: 'image_model'
}),
voice_model: many(user_app_preference, {
relationName: 'voice_model'
}),
usages: many(usage_log)
}));
17 replies
DTDrizzle Team
Created by buckwheat on 2/19/2025 in #help
TypeError: Cannot read properties of undefined (reading 'referencedTable')
Hey! Can you provide your drizzle schema?
17 replies
DTDrizzle Team
Created by GT on 2/18/2025 in #help
Drizzle Runner Error
Hey! Are there any errors on the "Schema" tab?
4 replies
DTDrizzle Team
Created by Parshu_Ram on 2/4/2025 in #help
Drizzle is not working properly and not creating tables
Can you provide minimal repo for reproduction?
13 replies
DTDrizzle Team
Created by Parshu_Ram on 2/4/2025 in #help
Drizzle is not working properly and not creating tables
If push doesn't display the table, perhaps it already exists in the database?
13 replies
DTDrizzle Team
Created by Parshu_Ram on 2/4/2025 in #help
Drizzle is not working properly and not creating tables
npm i drizzle-kit@latest
npm i drizzle-kit@latest
13 replies
DTDrizzle Team
Created by Parshu_Ram on 2/4/2025 in #help
Drizzle is not working properly and not creating tables
Try updating to the latest version.
13 replies
DTDrizzle Team
Created by Parshu_Ram on 2/4/2025 in #help
Drizzle is not working properly and not creating tables
@Parshu_Ram Hey! What version of drizzle-kit are you using?
13 replies
DTDrizzle Team
Created by Joe on 1/31/2025 in #help
Error: There are multiple relations between "__public__.*" and "*". Please specify relation name
It looks like the error is that you added one relations for activeGames and wonGames but did not add them for sessions.
5 replies
DTDrizzle Team
Created by Joe on 1/31/2025 in #help
Error: There are multiple relations between "__public__.*" and "*". Please specify relation name
@Joe Hey! Can you share your drizzle schema?
5 replies
DTDrizzle Team
Created by Rittam on 1/31/2025 in #help
Version required mkcert.
@Rittam Hey! Can you try deleting node_modules and reinstalling?
5 replies