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.
表の7番目に列を追加したいのですが、使用しています
$this->addColumn('table_name','column_name','type');
最後に列を追加します。列を追加する場所について言及できる方法はありますか?または、after columnキーワードを使用して、たとえばパスワード列の後に新しい列を追加します。YiiDocから移行について学びました
This should work!
$this->addColumn('table_name', 'column_name', 'type AFTER column6');
examples:
$this->addColumn('tbl_posts', 'email', 'VARCHAR(150) AFTER `name` '); $this->addColumn('tbl_posts', 'phone', 'string AFTER `email` ');