From f81905cbb53725c5b8588e9c4adaffa69559f20e Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Tue, 9 Oct 2012 12:22:07 -0500 Subject: [PATCH] Use mysql for all databases in the template file Sqlite is not in the Gemfile so it makes no sense to have it in the database.yml.tmpl file. --- config/database.yml.tmpl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/database.yml.tmpl b/config/database.yml.tmpl index f2b6ef57..915d2ce8 100644 --- a/config/database.yml.tmpl +++ b/config/database.yml.tmpl @@ -31,8 +31,10 @@ production: # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: &TEST - adapter: sqlite3 - database: ":memory:" + adapter: mysql2 + database: tracks_test + username: root + encoding: utf8 cucumber: <<: *TEST