update: add start and end date for campaigns

This commit is contained in:
Wataru Otsubo 2024-09-12 22:42:08 +09:00 committed by qwjyh
parent cb6e50b7dc
commit f5e6caf936
2 changed files with 21 additions and 6 deletions

View file

@ -46,6 +46,8 @@ CREATE TABLE qaqc_dispatch (
CREATE TABLE qaqc_campaigns (
id INTEGER NOT NULL PRIMARY KEY,
start_date DATETIME NOT NULL,
end_date DATETIME NOT NULL,
note TEXT
);