We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe874e0 + cfd4445 commit b12c640Copy full SHA for b12c640
src/server/db/schema/file.ts
@@ -11,7 +11,7 @@ export const file = pgTable('file', {
11
.notNull()
12
.references(() => user.id),
13
sectionId: text('section_id').references(() => section.id),
14
- file_url: text('file_url').notNull(),
+ file_name: text('file_name').notNull(),
15
});
16
17
export const fileRelations = relations(file, ({ one }) => ({
0 commit comments