table('company', ['comment' => '企业']) ->addColumn('company_name', 'string', ['comment'=>'企业名称', 'default' => '']) ->addColumn('start_date', 'date', ['comment'=>'开始日期', 'null' => true]) ->addColumn('end_date', 'date', ['comment'=>'结束日期', 'null' => true]) ->addColumn('status', 'integer', ['comment'=>'状态:0正常 1禁止', 'default' => 0]) ->addColumn('logo', 'string', ['comment'=>'企业logo', 'default' => '']) ->addColumn('root_id', 'integer', ['comment'=>'关联组织', 'default' => 0]) ->addColumn('addtime', 'timestamp', ['comment'=>'添加时间', 'default' => 'CURRENT_TIMESTAMP']) ->create(); } }