6 lines
91 B
SQL
6 lines
91 B
SQL
CREATE TABLE users (
|
|
id SERIAL PRIMARY KEY,
|
|
is_admin BOOLEAN NOT NULL DEFAULT FALSE
|
|
)
|
|
|