From c956ea880762d7142601292bd58778450091426d Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Wed, 23 Feb 2022 15:00:41 +0100 Subject: [PATCH] TT#157700 invoice template call directions Change-Id: I3fb18a7118161df6e782d53e5d47a3f84a00b16d --- db_scripts/diff/15717.down | 3 +++ db_scripts/diff/15717.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15717.down create mode 100644 db_scripts/diff/15717.up diff --git a/db_scripts/diff/15717.down b/db_scripts/diff/15717.down new file mode 100644 index 00000000..3585d965 --- /dev/null +++ b/db_scripts/diff/15717.down @@ -0,0 +1,3 @@ +USE billing; + +ALTER TABLE invoice_templates DROP COLUMN call_direction; \ No newline at end of file diff --git a/db_scripts/diff/15717.up b/db_scripts/diff/15717.up new file mode 100644 index 00000000..1f213b3b --- /dev/null +++ b/db_scripts/diff/15717.up @@ -0,0 +1,3 @@ +USE billing; + +ALTER TABLE invoice_templates ADD COLUMN call_direction enum('in','out','in_out') NOT NULL DEFAULT 'out'; \ No newline at end of file