Add color to accommodations
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-06-20 21:46:45 +02:00
parent 337f6ced5d
commit 3cdfc4d3c7
14 changed files with 128 additions and 7 deletions

View File

@ -15,6 +15,7 @@ CREATE TABLE IF NOT EXISTS accommodations_list
name VARCHAR(50) NOT NULL,
need_validation BOOLEAN NOT NULL DEFAULT true,
description text NULL,
color VARCHAR(6) NULL,
open_to_reservations BOOLEAN NOT NULL DEFAULT false
);