From 3cd30c9952f9d174ff4b774b43659900f1d444d8 Mon Sep 17 00:00:00 2001 From: Gareth Rees Date: Wed, 25 Jun 2014 11:43:00 +0100 Subject: Use alaveteli_ as database prefix rather than foi_ Clearer what app the database belongs to --- docs/installing/manual_install.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/installing/manual_install.md') diff --git a/docs/installing/manual_install.md b/docs/installing/manual_install.md index d523a199a..bf2f9b7cd 100644 --- a/docs/installing/manual_install.md +++ b/docs/installing/manual_install.md @@ -183,9 +183,9 @@ We'll create a template for our Alaveteli databases: Then create the databases: - # sudo -u postgres createdb -T template_utf8 -O foi foi_production - # sudo -u postgres createdb -T template_utf8 -O foi foi_test - # sudo -u postgres createdb -T template_utf8 -O foi foi_development + # sudo -u postgres createdb -T template_utf8 -O foi alaveteli_production + # sudo -u postgres createdb -T template_utf8 -O foi alaveteli_test + # sudo -u postgres createdb -T template_utf8 -O foi alaveteli_development Now you need to set up the database config file so that the application can connect to the postgres database. @@ -199,7 +199,7 @@ Example `development` section of `config/database.yml`: development: adapter: postgresql template: template_utf8 - database: foi_development + database: alaveteli_development username: foi password: secure-password-here host: localhost -- cgit v1.2.3