Changeset 617 for trunk/app/config
- Timestamp:
- 07/01/08 19:06:58 (5 months ago)
- Location:
- trunk/app/config
- Files:
-
- 2 modified
-
core.php (modified) (1 diff)
-
sql/postgresql/ecourses.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/config/core.php
r615 r617 14 14 * In development mode, you need to click the flash message to continue. 15 15 */ 16 Configure::write('debug', 0);16 Configure::write('debug', 1); 17 17 /** 18 18 * Application wide charset encoding -
trunk/app/config/sql/postgresql/ecourses.sql
r436 r617 8 8 "created" timestamp(0) with time zone DEFAULT now() NOT NULL, 9 9 "status" smallint DEFAULT 0 NOT NULL, 10 "lang_id" int NOT NULL REFERENCES langs(id) 10 "lang_id" int NOT NULL REFERENCES langs(id), 11 "code" varchar(13) 11 12 ); 12 13
