어떤 이유인지 Kohana 사례가 Exception [ 0 ]: The "users" table doesn't exist. Make sure to import the tables.sql file
입니다.
내가해야 할 일은 무엇입니까?KOHANA : ORM + MySQL이 테이블을 찾지 못합니다
19 {
20 ORM::factory('user');
21 }
22 catch(exception $e)
23 {
24 throw new Exception('The "users" table doesn\'t exist. Make sure to import the tables.sql file');
25 }
26
27 Route::set('Kohanauserauth', user::path().'(/<action>(/<id>))')
28 -> defaults(array(
29 'controller' => 'Kohanauserauth'
위 24 행에'echo Database_Exception :: text ($ e);'를 추가하면 특정 오류가 발생합니다. – Styphon