table('shop')->setComment('企业店面') ->addColumn('name', 'string', ['limit'=> 255, 'comment'=> '店面名称', 'default'=> '']) ->addColumn('address', 'string', ['limit'=> 255, 'comment'=> '店面地址', 'default'=> '']) ->addColumn('employee_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(); } }