feat(db): add can_create column to system.users

This commit is contained in:
Masahiko AMANO 2025-07-03 20:17:44 +03:00
parent d9ca913620
commit 436f164ab9

View File

@ -375,7 +375,8 @@ CREATE TABLE system.users (
id smallint NOT NULL,
name character varying(32) NOT NULL,
password text NOT NULL,
is_admin boolean DEFAULT false NOT NULL
is_admin boolean DEFAULT false NOT NULL,
can_create boolean DEFAULT false NOT NULL
);