[Jifty-commit] r7347 - jifty/trunk/lib/Jifty/Manual

Jifty commits jifty-commit at lists.jifty.org
Fri Jul 31 14:54:58 EDT 2009


Author: c9s
Date: Fri Jul 31 14:54:57 2009
New Revision: 7347

Modified:
   jifty/trunk/lib/Jifty/Manual/Cookbook.pod

Log:
add new item to cookbook.pod - how to use postgresql database instead of sqlite

Modified: jifty/trunk/lib/Jifty/Manual/Cookbook.pod
==============================================================================
--- jifty/trunk/lib/Jifty/Manual/Cookbook.pod	(original)
+++ jifty/trunk/lib/Jifty/Manual/Cookbook.pod	Fri Jul 31 14:54:57 2009
@@ -11,6 +11,19 @@
 
 =head1 HOW DO I ...
 
+=head2 Use PostgreSQL insteads of default SQLite database.
+
+You need to modify your F<etc/config.yml> file.
+
+  Database:
+    AutoUpgrade: 1
+    CheckSchema: 1
+    Database: twetter
+    Driver: SQLite
+
+Please change Driver "SQLite" to "Pg", and 
+make sure that you've installed L<DBD::Pg>.
+
 =head2 Create an LDAP autocomplete field
 
 You need an action in your application. Then run


More information about the Jifty-commit mailing list