Ændre felt hidden til mandatory.

En gruppe kan være obligatorisk. Som man hverkan tilmelde sig eller forlade.
This commit is contained in:
Mikkel
2022-05-31 16:54:37 +02:00
parent 5ecfe3b836
commit 674c8741e7
6 changed files with 13 additions and 13 deletions

View File

@ -13,7 +13,7 @@ CREATE TABLE IF NOT EXISTS users (
CREATE TABLE IF NOT EXISTS groups (
group_id SERIAL PRIMARY KEY,
name varchar(64) NOT NULL UNIQUE,
hidden boolean DEFAULT TRUE
mandatory boolean DEFAULT TRUE
);
CREATE TABLE IF NOT EXISTS threads (