Set default value of isactive to true

With this change, we set to default value of isactive column to true so that
upgrading users all nodes will be marked as active to not break their environment.
pull/1332/head
Burak Yucesoy 2017-04-18 09:40:44 +03:00
parent f5a406a23e
commit 00747dc8c9
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
SET search_path = 'pg_catalog';
ALTER TABLE pg_dist_node ADD isactive bool;
ALTER TABLE pg_dist_node ADD isactive bool NOT NULL DEFAULT true;
DROP FUNCTION IF EXISTS master_add_node(text, integer);