From 72480c89e8754096bf797bb426e0bd3389ef358a Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Tue, 3 Jun 2014 15:29:39 +0200 Subject: [PATCH] MT#5879 Add VAT number to contacts. --- db_scripts/diff/15061.down | 3 +++ db_scripts/diff/15061.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15061.down create mode 100644 db_scripts/diff/15061.up diff --git a/db_scripts/diff/15061.down b/db_scripts/diff/15061.down new file mode 100644 index 00000000..0a1e2a46 --- /dev/null +++ b/db_scripts/diff/15061.down @@ -0,0 +1,3 @@ +USE billing; +ALTER TABLE contacts + DROP COLUMN vatnum; diff --git a/db_scripts/diff/15061.up b/db_scripts/diff/15061.up new file mode 100644 index 00000000..9502c18b --- /dev/null +++ b/db_scripts/diff/15061.up @@ -0,0 +1,3 @@ +USE billing; +ALTER TABLE contacts + ADD COLUMN vatnum VARCHAR(127) DEFAULT NULL;