diff options
author | Dylan Hardison <dylan@mozilla.com> | 2016-02-10 05:20:53 +0100 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2016-02-10 05:21:12 +0100 |
commit | 6bd668c23ea614357b3028520d7539b7e48b6568 (patch) | |
tree | 561e15dfdcbaad56cb96a9404b85558e72bedb63 | |
parent | 9faa0dc04c8e362afa8044f3524a92f7d1f7c98d (diff) | |
download | bugzilla-6bd668c23ea614357b3028520d7539b7e48b6568.tar.gz bugzilla-6bd668c23ea614357b3028520d7539b7e48b6568.tar.xz |
Bug 1244528 - Default to DBD::SQLite for new installs for "out of the box" working bugzilla experience
r=dkl,a=dylan
-rw-r--r-- | Bugzilla/Install/Localconfig.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Localconfig.pm b/Bugzilla/Install/Localconfig.pm index fae97c189..6ff3f5e6c 100644 --- a/Bugzilla/Install/Localconfig.pm +++ b/Bugzilla/Install/Localconfig.pm @@ -60,7 +60,7 @@ use constant LOCALCONFIG_VARS => ( }, { name => 'db_driver', - default => 'mysql', + default => 'sqlite', }, { name => 'db_host', |