table('construction',['comment' => '在施工地']) ->addColumn('name', 'string', ['limit'=> 255,'comment' => '标题', 'default'=> '']) ->addColumn('area', 'string', ['limit'=> 255,'comment' => '面积', 'default'=> '']) ->addColumn('cover', 'string', ['limit'=> 255, 'comment' => '封面']) ->addColumn('start_time', 'date', ['comment' => '开工日期', 'null'=> true]) ->addColumn('community_id', 'integer', ['limit'=> 11, 'comment' => '小区id']) ->addColumn('style_id', 'integer', ['limit'=> 11, 'comment' => '装修风格id']) ->addColumn('housetype_id', 'integer', ['limit'=> 11, 'comment' => '户型id']) ->addColumn('designer_id', 'integer', ['limit'=> 11,'comment' => '设计师id']) ->addColumn('root_id', 'integer', ['limit'=> 11,'comment' => '企业id']) ->addColumn('step_id', 'integer', ['limit'=> 10,'comment' => '当前施工阶段', 'null'=>true]) ->addColumn(Column::tinyInteger('del')->setComment('是否上架,1上架')->setDefault(0)) ->addColumn('addtime', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '添加时间']) ->addColumn('update_time', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '更新时间']) ->addColumn('shared_times', 'integer', ['limit'=> 10,'comment' => '分享次数', 'default'=> 0]) ->create(); } }