From 69416981061b92d145d8e529ec0702adf8f09c7c Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Mon, 31 Mar 2014 16:26:59 +0200 Subject: [PATCH] MT#5879 Rename invoice template tables with s sufficses. --- db_scripts/diff/15052.down | 4 ++++ db_scripts/diff/15052.up | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 db_scripts/diff/15052.down create mode 100644 db_scripts/diff/15052.up diff --git a/db_scripts/diff/15052.down b/db_scripts/diff/15052.down new file mode 100644 index 00000000..a9b280c5 --- /dev/null +++ b/db_scripts/diff/15052.down @@ -0,0 +1,4 @@ +use billing; + +alter table invoice_templates rename to invoice_template; +alter table invoice_template_resources rename to invoice_template_resource; \ No newline at end of file diff --git a/db_scripts/diff/15052.up b/db_scripts/diff/15052.up new file mode 100644 index 00000000..8e784954 --- /dev/null +++ b/db_scripts/diff/15052.up @@ -0,0 +1,4 @@ +use billing; + +alter table invoice_template rename to invoice_templates; +alter table invoice_template_resource rename to invoice_template_resources; \ No newline at end of file