From b963ef395acbe366f73b5a59a89655e6361730a9 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Wed, 6 Jun 2012 09:38:15 -0400 Subject: [PATCH] [bug 761573] Add esunified waffle flag This waffle flag will waffle between the ES bucketed search results view that we have now and the new ES unified search results view of the glorious future. * off: bucketed search results (i.e. wiki, then questions, then forums) * on: unified search results (i.e. everything sorted by score) --- migrations/147-elasticsearch-unified-waffle.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 migrations/147-elasticsearch-unified-waffle.sql diff --git a/migrations/147-elasticsearch-unified-waffle.sql b/migrations/147-elasticsearch-unified-waffle.sql new file mode 100644 index 000000000..8a38493b8 --- /dev/null +++ b/migrations/147-elasticsearch-unified-waffle.sql @@ -0,0 +1,2 @@ +INSERT INTO waffle_flag (name, superusers, staff, authenticated, rollout, created, modified) +VALUES ('esunified', FALSE, FALSE, FALSE, FALSE, NOW(), NOW());