3 lines
102 B
SQL
3 lines
102 B
SQL
ALTER TABLE task ADD COLUMN has_time boolean NOT NULL DEFAULT false;
|
|
UPDATE task SET has_time = true;
|