From 47fe90ee23d8ab04645ef3c7a17459ed40c5b765 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 24 Apr 2022 16:31:49 +0200 Subject: Allow to attach categories to events --- src/db/migrations/3-event-color.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/db/migrations/3-event-color.sql (limited to 'src/db/migrations/3-event-color.sql') diff --git a/src/db/migrations/3-event-color.sql b/src/db/migrations/3-event-color.sql new file mode 100644 index 0000000..ec589ea --- /dev/null +++ b/src/db/migrations/3-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"); -- cgit v1.2.3