table('building_construction')->setComment('楼盘在施工地'); $table->addColumn('building_id', 'integer', ['limit'=> 10, 'comment'=> '楼盘id', 'default'=> 0]) ->addColumn('construction_id', 'integer', ['limit'=> 10, 'comment'=> '在施工地id', 'default'=> 0]) ->addColumn('root_id', 'integer', ['limit'=> 10, 'comment'=> '组织id', 'default'=> 0]) ->addColumn('addtime', 'timestamp', ['comment'=> '添加时间', 'default'=> 'CURRENT_TIMESTAMP']) ->create(); } }