Merge branch 'dev' into auth

This commit is contained in:
nihonium 2025-12-06 04:03:14 +03:00
commit 3afd4e2e86
Signed by: nihonium
GPG key ID: 0251623741027CFC
78 changed files with 3524 additions and 1635 deletions

View file

@ -45,6 +45,8 @@ CREATE TABLE titles (
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
-- example {"ru": ["Атака титанов", "Атака Титанов"],"en": ["Attack on Titan", "AoT"],"ja": ["進撃の巨人", "しんげきのきょじん"]}
title_names jsonb NOT NULL,
-- example {"ru": "Кулинарное аниме как правильно приготовить людей.","en": "A culinary anime about how to cook people properly."}
title_desc jsonb,
studio_id bigint NOT NULL REFERENCES studios (id),
poster_id bigint REFERENCES images (id) ON DELETE SET NULL,
title_status title_status_t NOT NULL,