From 13c35c262072c06a97b178c9c9cabbe2482ac649 Mon Sep 17 00:00:00 2001 From: Jamie Winsor Date: Wed, 3 Aug 2011 19:02:27 -0700 Subject: rename default database for mysql and postgres example databases --- spec/dummy/config/database.yml.mysql | 6 +++--- spec/dummy/config/database.yml.postgresql | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'spec') diff --git a/spec/dummy/config/database.yml.mysql b/spec/dummy/config/database.yml.mysql index 75cca95..4a15c05 100644 --- a/spec/dummy/config/database.yml.mysql +++ b/spec/dummy/config/database.yml.mysql @@ -3,18 +3,18 @@ development: &development host: localhost username: root password: - database: your_local_database + database: refinerycms_blog_development test: &test adapter: mysql2 host: localhost username: root password: - database: your_test_database + database: refinerycms_blog_test production: &production adapter: mysql2 host: localhost - database: your_production_database + database: refinerycms_blog_production username: your_production_database_login password: your_production_database_password diff --git a/spec/dummy/config/database.yml.postgresql b/spec/dummy/config/database.yml.postgresql index 2146d1f..0556b23 100644 --- a/spec/dummy/config/database.yml.postgresql +++ b/spec/dummy/config/database.yml.postgresql @@ -15,7 +15,7 @@ development: adapter: postgresql encoding: unicode - database: refinery_database_development + database: refinerycms_blog_development pool: 5 username: postgres password: postgres @@ -41,7 +41,7 @@ development: test: adapter: postgresql encoding: unicode - database: refinery_database_test + database: refinerycms_blog_test pool: 5 username: postgres password: postgres @@ -49,7 +49,7 @@ test: production: adapter: postgresql encoding: unicode - database: refinery_database_production + database: refinerycms_blog_production pool: 5 username: postgres password: postgres -- cgit v1.2.3