diff options
author | Joris | 2022-02-20 09:33:55 +0100 |
---|---|---|
committer | Joris | 2022-02-20 09:33:55 +0100 |
commit | 1445e23a26c6581ad0c3f5b5016e47e95d224e9f (patch) | |
tree | 18bd4288fbcf52279a69de50be5bad6cc7db3c75 /src/db/migrations | |
parent | 6c47403b11e7aaf1a22778bdc7615051779cb7bd (diff) |
Save repetition in events
But don’t show repetead events for now.
Diffstat (limited to 'src/db/migrations')
-rw-r--r-- | src/db/migrations/1-init.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/db/migrations/1-init.sql b/src/db/migrations/1-init.sql index 39b845b..a7db8b8 100644 --- a/src/db/migrations/1-init.sql +++ b/src/db/migrations/1-init.sql @@ -4,6 +4,7 @@ CREATE TABLE IF NOT EXISTS "events" ( "start" VARCHAR NULL, "end" VARCHAR NULL, "name" VARCHAR NOT NULL, + "repetition" VARCHAR NULL, "created" TIMESTAMP NOT NULL, "updated" TIMESTAMP NOT NULL ); |