From ded890df1f861b8b7d8d618ac9ee316c037ff81b Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Mon, 30 Sep 2013 13:34:38 +0200 Subject: [PATCH] MT#3977 Add num_lines to autoprov_devices table --- db_scripts/diff/15018.down | 3 +++ db_scripts/diff/15018.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15018.down create mode 100644 db_scripts/diff/15018.up diff --git a/db_scripts/diff/15018.down b/db_scripts/diff/15018.down new file mode 100644 index 00000000..07dfe10a --- /dev/null +++ b/db_scripts/diff/15018.down @@ -0,0 +1,3 @@ +USE provisioning; + +ALTER TABLE autoprov_devices DROP COLUMN num_lines; diff --git a/db_scripts/diff/15018.up b/db_scripts/diff/15018.up new file mode 100644 index 00000000..2414c4ea --- /dev/null +++ b/db_scripts/diff/15018.up @@ -0,0 +1,3 @@ +USE provisioning; + +ALTER TABLE autoprov_devices ADD COLUMN num_lines INT(5) UNSIGNED DEFAULT NULL;