From 415e06d366ddbe0ef01716e430bda617e36a0b36 Mon Sep 17 00:00:00 2001 From: robmckinnon Date: Thu, 24 Apr 2008 23:37:20 +0100 Subject: [PATCH] added back database.yml.example --- config/database.yml.example | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 config/database.yml.example diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 00000000..b444b03c --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,19 @@ +# SQLite version 3.x +# gem install sqlite3-ruby (not necessary on OS X Leopard) +development: + adapter: sqlite3 + database: db/development.sqlite3 + timeout: 5000 + +# Warning: The database defined as 'test' will be erased and +# re-generated from your development database when you run 'rake'. +# Do not set this db to the same as development or production. +test: + adapter: sqlite3 + database: db/test.sqlite3 + timeout: 5000 + +production: + adapter: sqlite3 + database: db/production.sqlite3 + timeout: 5000