Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我以前使用过 Django(python),现在我正在学习 Kohana (PHP)。看起来不错,但我想知道 Kohana 中是否有类似“django-admin.py syncdb”之类的东西,或者至少是一个可以完成相同工作的工具。
在开始使用数据库之前,Django 模型知道有关其领域的所有信息。相比之下,Kohana 模型只知道表名,并且首先使用 ORM 自动调用 ORM::list_columns() 来执行 sql 查询
SHOW FULL COLUMNS FROM `tablename`
并为此模型填充受保护的 $_table_columns 变量