after reading the documentation, crazy right? I figured out i was making my life hard, this makes my life easy again
5 lines
169 B
SQL
5 lines
169 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE instance_permissions (
|
|
uuid uuid PRIMARY KEY NOT NULL REFERENCES users(uuid),
|
|
administrator boolean NOT NULL DEFAULT FALSE
|
|
);
|