taskcafe/migrations/0063_add-use_time-to-task-due_date.up.sql

3 lines
102 B
MySQL
Raw Normal View History

2021-01-01 21:51:40 +01:00
ALTER TABLE task ADD COLUMN has_time boolean NOT NULL DEFAULT false;
UPDATE task SET has_time = true;