Network table schema bg_hex_color cannot be null

This commit is contained in:
2024-11-26 11:35:56 +02:00
parent 3cea06b991
commit 49ea3d630b
2 changed files with 3 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ CREATE TABLE networks (
owner_id INT NOT NULL REFERENCES users (id),
name TEXT NOT NULL,
icon TEXT NOT NULL,
bg_hex_color TEXT,
bg_hex_color TEXT NOT NULL,
fg_hex_color TEXT NOT NULL,
is_public BOOLEAN NOT NULL CHECK (is_public IN (0, 1))
);

View File

@@ -11,7 +11,8 @@ INSERT INTO networks (
id, owner_id, name, is_public,
icon, bg_hex_color, fg_hex_color
) VALUES (
?, ?, ?, ?, ?, ?, ?
?, ?, ?, ?,
?, ?, ?
)
RETURNING *;