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.
我已经开始使用 Yii (1.1) 来保持不同环境之间的同步数据库模式。我的问题是:是否有任何简单的方法可以使用 SQL 代码自动编写 Up() 和 Down() 方法?
目前,如果我添加新表或更改现有表,我需要手动编写这些方法。
命令yiic migrate create table_name只创建一个空类。或者,我可以创建新的迁移文件并使用 $this->exexute('sql code here') 属性。但我只是想知道 Yii 是否有任何方法可以检测数据库更改并自行创建迁移代码