diff options
author | Joris | 2025-02-07 10:35:20 +0100 |
---|---|---|
committer | Joris | 2025-02-07 10:35:20 +0100 |
commit | 582c03eacbc73b851aa232c404be71b2cf77295a (patch) | |
tree | 59c48474f03135a7cdb8c104f372a84f1777cac8 /src/db/migrations/03-event-color.sql | |
parent | 8a78d6fcb970d256f7645d6c0a6f02da987a2896 (diff) |
Use strict mode for tables
Diffstat (limited to 'src/db/migrations/03-event-color.sql')
-rw-r--r-- | src/db/migrations/03-event-color.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/db/migrations/03-event-color.sql b/src/db/migrations/03-event-color.sql new file mode 100644 index 0000000..ec589ea --- /dev/null +++ b/src/db/migrations/03-event-color.sql @@ -0,0 +1,5 @@ +CREATE TABLE IF NOT EXISTS "event_color" ( + "color" TEXT NOT NULL /* COLOR */ +); + +INSERT INTO "event_color" ("color") VALUES ("#a8c2e0"); |