Compare commits
No commits in common. 'e3bfbec53deb0348c15cc6986bd38637f010c3dc' and '2f506a7d2d7b50d8c8eadc8db2bbc0e86807bd23' have entirely different histories.
e3bfbec53d
...
2f506a7d2d
@ -0,0 +1,21 @@
|
|||||||
|
export interface Database {
|
||||||
|
public: {
|
||||||
|
Tables: {
|
||||||
|
notes: {
|
||||||
|
Row: {
|
||||||
|
id: number
|
||||||
|
uuid: string
|
||||||
|
title: string
|
||||||
|
description: string
|
||||||
|
user_id: string
|
||||||
|
created_at: string
|
||||||
|
} // The data expected to be returned from a "select" statement.
|
||||||
|
Insert: {} // The data expected passed to an "insert" statement.
|
||||||
|
Update: {
|
||||||
|
title: string
|
||||||
|
description: string
|
||||||
|
} // The data expected passed to an "update" statement.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue