mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 14:31:13 -05:00
Approve blog post migration
This commit is contained in:
@@ -74,6 +74,51 @@ export type Database = {
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
blog_posts: {
|
||||
Row: {
|
||||
author_id: string
|
||||
content: string
|
||||
created_at: string | null
|
||||
featured_image_id: string | null
|
||||
featured_image_url: string | null
|
||||
id: string
|
||||
published_at: string | null
|
||||
slug: string
|
||||
status: string
|
||||
title: string
|
||||
updated_at: string | null
|
||||
view_count: number | null
|
||||
}
|
||||
Insert: {
|
||||
author_id: string
|
||||
content: string
|
||||
created_at?: string | null
|
||||
featured_image_id?: string | null
|
||||
featured_image_url?: string | null
|
||||
id?: string
|
||||
published_at?: string | null
|
||||
slug: string
|
||||
status?: string
|
||||
title: string
|
||||
updated_at?: string | null
|
||||
view_count?: number | null
|
||||
}
|
||||
Update: {
|
||||
author_id?: string
|
||||
content?: string
|
||||
created_at?: string | null
|
||||
featured_image_id?: string | null
|
||||
featured_image_url?: string | null
|
||||
id?: string
|
||||
published_at?: string | null
|
||||
slug?: string
|
||||
status?: string
|
||||
title?: string
|
||||
updated_at?: string | null
|
||||
view_count?: number | null
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
companies: {
|
||||
Row: {
|
||||
average_rating: number | null
|
||||
@@ -2899,6 +2944,10 @@ export type Database = {
|
||||
Args: { ip_text: string }
|
||||
Returns: string
|
||||
}
|
||||
increment_blog_view_count: {
|
||||
Args: { post_slug: string }
|
||||
Returns: undefined
|
||||
}
|
||||
is_moderator: {
|
||||
Args: { _user_id: string }
|
||||
Returns: boolean
|
||||
|
||||
Reference in New Issue
Block a user