Changeset 409 for trunk/app/config

Show
Ignore:
Timestamp:
04/18/08 14:30:29 (8 months ago)
Author:
aarkerio
Message:

Discussions fixed

Location:
trunk/app/config
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/config/core.php

    r407 r409  
    1414 * In development mode, you need to click the flash message to continue. 
    1515 */ 
    16     Configure::write('debug', 1); 
     16    Configure::write('debug', 2); 
    1717/** 
    1818 * Application wide charset encoding 
     
    7575 * 
    7676 */ 
    77     Configure::write('Session.save', 'cake'); 
     77    Configure::write('Session.save', 'database'); 
    7878/** 
    7979 * The name of the table used to store CakePHP database sessions. 
     
    199199 *                  ); 
    200200 */ 
    201     Cache::config('default', array('engine' => 'File')); 
     201     Cache::config('default', array('engine' => 'File')); 
    202202?> 
  • trunk/app/config/sql/karamelo_postgres.sql

    r401 r409  
    148148 "level" int NOT NULL, 
    149149 "discussion_id" int NOT NULL, 
    150  "user_id" int REFERENCES news(id) NOT NULL, 
     150 "user_id" int REFERENCES users(id) NOT NULL, 
    151151 "status" int NOT NULL DEFAULT 0 
    152152);