From 92921b46135958a9426d5ca2fb5f8a323b5445f7 Mon Sep 17 00:00:00 2001 From: Irka Date: Mon, 11 Aug 2014 09:47:05 +0200 Subject: [PATCH] MT#8371 Make billing_mappings actual id selection faster. --- db_scripts/diff/15096.down | 3 +++ db_scripts/diff/15096.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15096.down create mode 100644 db_scripts/diff/15096.up diff --git a/db_scripts/diff/15096.down b/db_scripts/diff/15096.down new file mode 100644 index 00000000..8c544997 --- /dev/null +++ b/db_scripts/diff/15096.down @@ -0,0 +1,3 @@ +use billing; + +DROP INDEX billing_mappings_start_date on billing_mappings; \ No newline at end of file diff --git a/db_scripts/diff/15096.up b/db_scripts/diff/15096.up new file mode 100644 index 00000000..b678567d --- /dev/null +++ b/db_scripts/diff/15096.up @@ -0,0 +1,3 @@ +use billing; + +CREATE INDEX billing_mappings_start_date ON billing_mappings (start_date); \ No newline at end of file