Remove old covers and tags arrays from db

This commit is contained in:
Jared Schoeny
2025-10-11 12:02:32 -10:00
parent eb87506640
commit d854d56ff8
2 changed files with 202 additions and 6 deletions

View File

@@ -84,7 +84,6 @@ export type Database = {
author: string
base_rom: string
box_art: string | null
covers: string[]
created_at: string
created_by: string
current_patch: number | null
@@ -97,7 +96,6 @@ export type Database = {
slug: string
social_links: Json | null
summary: string
tags: string[]
title: string
updated_at: string | null
version: string
@@ -109,7 +107,6 @@ export type Database = {
author: string
base_rom: string
box_art?: string | null
covers?: string[]
created_at?: string
created_by: string
current_patch?: number | null
@@ -122,7 +119,6 @@ export type Database = {
slug: string
social_links?: Json | null
summary: string
tags?: string[]
title: string
updated_at?: string | null
version: string
@@ -134,7 +130,6 @@ export type Database = {
author?: string
base_rom?: string
box_art?: string | null
covers?: string[]
created_at?: string
created_by?: string
current_patch?: number | null
@@ -147,7 +142,6 @@ export type Database = {
slug?: string
social_links?: Json | null
summary?: string
tags?: string[]
title?: string
updated_at?: string | null
version?: string