From d3cb00546ef4a57321afb1f2113378a80e8cb325 Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Thu, 12 Jun 2014 22:41:48 +0300 Subject: [PATCH] MT#5879 Add sent masrker to invoices. --- db_scripts/diff/15068.down | 3 +++ db_scripts/diff/15068.up | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 db_scripts/diff/15068.down create mode 100644 db_scripts/diff/15068.up diff --git a/db_scripts/diff/15068.down b/db_scripts/diff/15068.down new file mode 100644 index 00000000..18f2bc36 --- /dev/null +++ b/db_scripts/diff/15068.down @@ -0,0 +1,3 @@ +USE billing; + +alter table invoices drop column sent_date; \ No newline at end of file diff --git a/db_scripts/diff/15068.up b/db_scripts/diff/15068.up new file mode 100644 index 00000000..8cada4c6 --- /dev/null +++ b/db_scripts/diff/15068.up @@ -0,0 +1,2 @@ +use billing; +alter table invoices add column sent_date datetime default null;