Changeset 409 for trunk/app/config
- Timestamp:
- 04/18/08 14:30:29 (8 months ago)
- Location:
- trunk/app/config
- Files:
-
- 2 modified
-
core.php (modified) (3 diffs)
-
sql/karamelo_postgres.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/core.php
r407 r409 14 14 * In development mode, you need to click the flash message to continue. 15 15 */ 16 Configure::write('debug', 1);16 Configure::write('debug', 2); 17 17 /** 18 18 * Application wide charset encoding … … 75 75 * 76 76 */ 77 Configure::write('Session.save', ' cake');77 Configure::write('Session.save', 'database'); 78 78 /** 79 79 * The name of the table used to store CakePHP database sessions. … … 199 199 * ); 200 200 */ 201 Cache::config('default', array('engine' => 'File'));201 Cache::config('default', array('engine' => 'File')); 202 202 ?> -
trunk/app/config/sql/karamelo_postgres.sql
r401 r409 148 148 "level" int NOT NULL, 149 149 "discussion_id" int NOT NULL, 150 "user_id" int REFERENCES news(id) NOT NULL,150 "user_id" int REFERENCES users(id) NOT NULL, 151 151 "status" int NOT NULL DEFAULT 0 152 152 );
