add rss feed with common actions

This commit is contained in:
2023-04-18 12:10:11 +02:00
parent b50d546a5c
commit a3ac83228c
8 changed files with 138 additions and 4 deletions

View File

@ -45,3 +45,9 @@ CREATE TABLE IF NOT EXISTS "user_trip" (
FOREIGN KEY(trip_details_id) REFERENCES trip_details(id),
CONSTRAINT unq UNIQUE (user_id, trip_details_id) -- allow user to participate only once for each trip
);
CREATE TABLE IF NOT EXISTS "log" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"msg" text NOT NULL,
"created_at" text NOT NULL DEFAULT CURRENT_TIMESTAMP
);