start working on always_show task

This commit is contained in:
2023-05-14 09:38:45 +02:00
parent d00aa35429
commit 746c1c2b23
2 changed files with 1 additions and 3 deletions

View File

@ -34,6 +34,7 @@ CREATE TABLE IF NOT EXISTS "planned_event" (
"planned_amount_cox" INTEGER unsigned NOT NULL,
"trip_details_id" INTEGER NOT NULL,
"created_at" text NOT NULL DEFAULT CURRENT_TIMESTAMP,
"always_show" boolean NOT NULL default false,
FOREIGN KEY(trip_details_id) REFERENCES trip_details(id) ON DELETE CASCADE
);