diff options
Diffstat (limited to 'db/old_migrations/patch-add-gamedig-given-port.sql')
-rw-r--r-- | db/old_migrations/patch-add-gamedig-given-port.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/old_migrations/patch-add-gamedig-given-port.sql b/db/old_migrations/patch-add-gamedig-given-port.sql new file mode 100644 index 0000000..897a9c7 --- /dev/null +++ b/db/old_migrations/patch-add-gamedig-given-port.sql @@ -0,0 +1,7 @@ +-- You should not modify if this have pushed to Github, unless it does serious wrong with the db. +BEGIN TRANSACTION; + +ALTER TABLE monitor + ADD gamedig_given_port_only BOOLEAN default 1 not null; + +COMMIT; |