table('admin_list', [ 'comment' => '用于维护接口信息' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('api_class', 'string', [ 'limit' => 50, 'default' => '', 'comment' => 'api索引,保存了类和方法' ])->addColumn('hash', 'string', [ 'limit' => 50, 'default' => '', 'comment' => 'api唯一标识' ])->addColumn('access_token', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => '认证方式 1:复杂认证,0:简易认证' ])->addColumn('status', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => 'API状态:0表示禁用,1表示启用' ])->addColumn('method', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 2, 'comment' => '请求方式0:不限1:Post,2:Get' ])->addColumn('info', 'string', [ 'limit' => 500, 'default' => '', 'comment' => 'api中文说明' ])->addColumn('is_test', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 0, 'comment' => '是否是测试模式:0:生产模式,1:测试模式' ])->addColumn('return_str', 'text', [ 'null' => true, 'comment' => '返回数据示例' ])->addColumn('group_hash', 'string', [ 'limit' => 64, 'default' => 'default', 'comment' => '当前接口所属的接口分组' ])->addIndex(['hash'])->create(); } }