Changes
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
144e7e45ae
commit
be07ab2fa3
@@ -1786,6 +1786,54 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
smtp_settings: {
|
||||
Row: {
|
||||
created_at: string
|
||||
enabled: boolean
|
||||
from_email: string
|
||||
from_name: string | null
|
||||
host: string
|
||||
id: string
|
||||
notes: string | null
|
||||
port: number
|
||||
reply_to: string | null
|
||||
secure: boolean
|
||||
updated_at: string
|
||||
updated_by: string | null
|
||||
username: string | null
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
enabled?: boolean
|
||||
from_email: string
|
||||
from_name?: string | null
|
||||
host: string
|
||||
id?: string
|
||||
notes?: string | null
|
||||
port?: number
|
||||
reply_to?: string | null
|
||||
secure?: boolean
|
||||
updated_at?: string
|
||||
updated_by?: string | null
|
||||
username?: string | null
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
enabled?: boolean
|
||||
from_email?: string
|
||||
from_name?: string | null
|
||||
host?: string
|
||||
id?: string
|
||||
notes?: string | null
|
||||
port?: number
|
||||
reply_to?: string | null
|
||||
secure?: boolean
|
||||
updated_at?: string
|
||||
updated_by?: string | null
|
||||
username?: string | null
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
status_updates: {
|
||||
Row: {
|
||||
body: string
|
||||
|
||||
Reference in New Issue
Block a user