This commit is contained in:
Iron_Felix 2025-11-17 09:26:58 +03:00
parent abf09e5f5e
commit df45a327e6
5 changed files with 60 additions and 35 deletions

View file

@ -54,7 +54,7 @@ CREATE TABLE users (
CREATE TABLE studios (
id bigint GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
studio_name text UNIQUE,
studio_name text NOT NULL UNIQUE,
illust_id bigint REFERENCES images (id),
studio_desc text
);