6b01264373
See https://github.com/ooni/probe/issues/2352 Co-authored-by: decfox <decfox@github.com> Co-authored-by: Simone Basso <bassosimone@gmail.com>
15 lines
277 B
SQL
15 lines
277 B
SQL
-- +migrate Down
|
|
-- +migrate StatementBegin
|
|
|
|
ALTER TABLE `results`
|
|
DROP COLUMN result_is_uploaded;
|
|
|
|
-- +migrate StatementEnd
|
|
|
|
-- +migrate Up
|
|
-- +migrate StatementBegin
|
|
|
|
ALTER TABLE `results`
|
|
ADD COLUMN result_is_uploaded TINYINT(1) DEFAULT 1 NOT NULL;
|
|
|
|
-- +migrate StatementEnd |