fix
All checks were successful
Build and Deploy Go App / build (push) Successful in 17m59s
Build and Deploy Go App / deploy (push) Successful in 3m34s

This commit is contained in:
Iron_Felix 2025-11-18 03:12:16 +03:00
parent 148ae646b1
commit 8371121130
2 changed files with 13 additions and 6 deletions

View file

@ -60,6 +60,7 @@ CREATE TABLE studios (
);
CREATE TABLE titles (
// TODO: anime type (film, season etc)
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
-- example {"ru": ["Атака титанов", "Атака Титанов"],"en": ["Attack on Titan", "AoT"],"ja": ["進撃の巨人", "しんげきのきょじん"]}
title_names jsonb NOT NULL,
@ -88,6 +89,7 @@ CREATE TABLE usertitles (
rate int CHECK (rate > 0 AND rate <= 10),
review_text text,
review_date timestamptz
// TODO: series status
);
CREATE TABLE title_tags (