yii2 建立表格

示例

public function up()
{
    $this->createTable('post', [
        'id' => $this->primaryKey()
    ]);
}