table('smart_screen_construction')->setComment('智慧屏在施工地') ->addColumn('owner_name', 'string', ['limit'=> 200, 'default'=> '', 'comment'=> '业主姓名']) ->addColumn('address', 'string', ['limit'=> 255, 'default'=> '', 'comment'=> '工程地址']) ->addColumn('designer_id', 'integer', ['limit'=> 10, 'default'=> 0, 'comment'=> '设计师id']) ->addColumn('project_manager', 'string', ['limit'=> 100, 'default'=> '', 'comment'=> '项目经理']) ->addColumn('inspection', 'string', ['limit'=> 100, 'default'=> '', 'comment'=> '片区/质检']) ->addColumn('status', 'integer', ['limit'=> 5, 'default'=> 0, 'comment'=> '施工状态']) ->addColumn('employee_id', 'integer', ['limit'=> 10, 'default'=> 0, 'comment'=> '上传人']) ->addColumn('root_id', 'integer', ['limit'=> 10, 'default'=> 0, 'comment'=> '组织id']) ->addColumn('addtime', 'timestamp', ['default'=> 'CURRENT_TIMESTAMP', 'comment'=> '添加时间']) ->create(); } }