addColumn( 'customer', 'nationality', $this->string()->defaultValue(0) // не указано ); $this->addColumn( 'customer', 'country_from', $this->string() ); $this->addColumn('customer','user_work_status', $this->tinyInteger() ); $this->addCommentOnColumn('customer', 'country_from', 'Страна, откуда приедет юзер'); } public function down() { $this->dropColumn('customer','nationality'); $this->dropColumn('customer','country_from'); $this->dropColumn('customer','user_work_status'); } }