diff options
| author | mo khan <mo@mokhan.ca> | 2014-02-20 19:35:45 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2014-02-20 19:35:45 -0700 |
| commit | b1bac85f2c8b55e92f0472cbe4e548beb74743d0 (patch) | |
| tree | ecf290992c11ef8ebbb27cc5ecdc5457733d282c /config/database.yml.example | |
| parent | 12e544beb49702b876ce0cbd104d881d86b53383 (diff) | |
remove sqlite and use pg.
Diffstat (limited to 'config/database.yml.example')
| -rw-r--r-- | config/database.yml.example | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 0000000..e598daf --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,13 @@ +development: + adapter: postgresql + database: licenses_dev + username: <username> + password: <password> + host: <hostname or ip address. eg.: localhost> + +test: + adapter: postgresql + database: licenses_test + username: <username> + password: <password> + host: <hostname or ip address. eg.: localhost> |
