fixed database namespacing.

This commit is contained in:
Taylor Otwell
2011-08-25 23:12:30 -05:00
parent 88fb300e7a
commit e0a9f57515
9 changed files with 15 additions and 15 deletions

View File

@@ -23,7 +23,7 @@ unset($laravel, $application, $config, $packages, $public, $storage);
define('CACHE_PATH', STORAGE_PATH.'cache/');
define('CONFIG_PATH', APP_PATH.'config/');
define('CONTROLLER_PATH', APP_PATH.'controllers/');
define('DATABASE_PATH', STORAGE_PATH.'db/');
define('DATABASE_PATH', STORAGE_PATH.'database/');
define('LANG_PATH', APP_PATH.'language/');
define('SCRIPT_PATH', PUBLIC_PATH.'js/');
define('SESSION_PATH', STORAGE_PATH.'sessions/');