chore(#15): update db_schema types

This commit is contained in:
OllyNicholass
2024-06-19 01:24:54 +01:00
parent 1f35285525
commit 2dfb7329a8
-3
View File
@@ -37,7 +37,6 @@ export type Database = {
profiles: {
Row: {
created_at: string | null
email: string | null
full_name: string | null
id: string
updated_at: string | null
@@ -45,7 +44,6 @@ export type Database = {
}
Insert: {
created_at?: string | null
email?: string | null
full_name?: string | null
id: string
updated_at?: string | null
@@ -53,7 +51,6 @@ export type Database = {
}
Update: {
created_at?: string | null
email?: string | null
full_name?: string | null
id?: string
updated_at?: string | null