feat: reports
This commit is contained in:
35
src/lib/database.d.ts
vendored
35
src/lib/database.d.ts
vendored
@@ -34,6 +34,41 @@ export type Database = {
|
||||
}
|
||||
public: {
|
||||
Tables: {
|
||||
reports: {
|
||||
Row: {
|
||||
content: string | null
|
||||
created_at: string | null
|
||||
id: string
|
||||
study_space_id: string | null
|
||||
type: string
|
||||
updated_at: string | null
|
||||
}
|
||||
Insert: {
|
||||
content?: string | null
|
||||
created_at?: string | null
|
||||
id?: string
|
||||
study_space_id?: string | null
|
||||
type: string
|
||||
updated_at?: string | null
|
||||
}
|
||||
Update: {
|
||||
content?: string | null
|
||||
created_at?: string | null
|
||||
id?: string
|
||||
study_space_id?: string | null
|
||||
type?: string
|
||||
updated_at?: string | null
|
||||
}
|
||||
Relationships: [
|
||||
{
|
||||
foreignKeyName: "reports_study_space_id_fkey"
|
||||
columns: ["study_space_id"]
|
||||
isOneToOne: false
|
||||
referencedRelation: "study_spaces"
|
||||
referencedColumns: ["id"]
|
||||
},
|
||||
]
|
||||
}
|
||||
study_space_images: {
|
||||
Row: {
|
||||
created_at: string | null
|
||||
|
||||
Reference in New Issue
Block a user