fix
All checks were successful
Build and Deploy Go App / build (push) Successful in 5m32s
Build and Deploy Go App / deploy (push) Successful in 25s

This commit is contained in:
Iron_Felix 2025-11-22 08:47:01 +03:00
parent 4b1ac9177d
commit d0c3547ef6
4 changed files with 25 additions and 21 deletions

View file

@ -6,6 +6,7 @@ package sqlc
import (
"database/sql/driver"
"encoding/json"
"fmt"
"time"
@ -223,11 +224,11 @@ type ReviewImage struct {
}
type Signal struct {
ID int64 `json:"id"`
TitleID *int64 `json:"title_id"`
RawData []byte `json:"raw_data"`
ProviderID int64 `json:"provider_id"`
Pending bool `json:"pending"`
ID int64 `json:"id"`
TitleID *int64 `json:"title_id"`
RawData json.RawMessage `json:"raw_data"`
ProviderID int64 `json:"provider_id"`
Pending bool `json:"pending"`
}
type Studio struct {
@ -238,13 +239,13 @@ type Studio struct {
}
type Tag struct {
ID int64 `json:"id"`
TagNames []byte `json:"tag_names"`
ID int64 `json:"id"`
TagNames json.RawMessage `json:"tag_names"`
}
type Title struct {
ID int64 `json:"id"`
TitleNames []byte `json:"title_names"`
TitleNames json.RawMessage `json:"title_names"`
StudioID int64 `json:"studio_id"`
PosterID *int64 `json:"poster_id"`
TitleStatus TitleStatusT `json:"title_status"`