Files Table
Files Table
Preview
API
Property | Type | Is Required |
---|---|---|
files | CompleteFile[] | true |
Complete File Type
/src/db/schema.ts
export type CompleteFile = typeof files.$inferSelect & {
comments: ComepleteComment[];
user?: typeof users.$inferSelect;
team?: typeof team.$inferSelect;
tags: TagPivot[];
};