yii migrate/create add_position_column_to_post_table --fields="position:integer"
yii migrate/create create_news_table
class m150811_220037_add_position_column_to_post_table extends Migration
{
public function up()
{
$this->addColumn('post', 'position', $this->integer());
}
public function down()
{
$this->dropColumn('post', 'position');
}
}
yii migrate/create create_post_table --fields="title:string(12):notNull:unique,body:text"
yii migrate/create create_post_table --fields="author_id:integer:notNull:foreignKey(user),category_id:integer:defaultValue(1):foreignKey,title:string,body:text"