diff --git a/app/admin/database/20221013031925_install_admin.php b/app/admin/database/20221013031925_install_admin.php index f9af34e1b..134a85c86 100644 --- a/app/admin/database/20221013031925_install_admin.php +++ b/app/admin/database/20221013031925_install_admin.php @@ -43,7 +43,7 @@ class InstallAdmin extends Migrator ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '权限名称']) ->addColumn('utype', 'string', ['limit' => 50, 'default' => '', 'comment' => '身份权限']) ->addColumn('desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '权限状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_auth_status']) @@ -51,7 +51,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -73,14 +73,14 @@ class InstallAdmin extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', ]) - ->addColumn('auth', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '角色']) + ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色']) ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点']) ->addIndex('auth', ['name' => 'idx_system_auth_node_auth']) ->addIndex('node', ['name' => 'idx_system_auth_node_node']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -106,11 +106,11 @@ class InstallAdmin extends Migrator ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据代码']) ->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '数据名称']) ->addColumn('content', 'text', ['default' => null, 'comment' => '数据内容']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '数据状态(0禁用,1启动)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0正常,1已删)']) ->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '删除时间']) - ->addColumn('deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) + ->addColumn('deleted_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('type', ['name' => 'idx_system_base_type']) ->addIndex('code', ['name' => 'idx_system_base_code']) @@ -118,7 +118,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -148,7 +148,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -176,7 +176,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -205,8 +205,8 @@ class InstallAdmin extends Migrator ->addColumn('xurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '访问链接']) ->addColumn('xkey', 'string', ['limit' => 500, 'default' => '', 'comment' => '文件路径']) ->addColumn('mime', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件类型']) - ->addColumn('size', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文件大小']) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户编号']) + ->addColumn('size', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文件大小']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户编号']) ->addColumn('isfast', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '是否秒传']) ->addColumn('issafe', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '安全模式']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '上传状态(1悬空,2落地)']) @@ -222,7 +222,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -244,7 +244,7 @@ class InstallAdmin extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级ID']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级ID']) ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单名称']) ->addColumn('icon', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单图标']) ->addColumn('node', 'string', ['limit' => 100, 'default' => '', 'comment' => '节点代码']) @@ -258,7 +258,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -289,7 +289,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -314,14 +314,14 @@ class InstallAdmin extends Migrator ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号']) ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '任务名称']) ->addColumn('command', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行指令']) - ->addColumn('exec_pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行进程']) + ->addColumn('exec_pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行进程']) ->addColumn('exec_data', 'text', ['default' => null, 'comment' => '执行参数']) - ->addColumn('exec_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行时间']) + ->addColumn('exec_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行时间']) ->addColumn('exec_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行描述']) ->addColumn('enter_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'comment' => '开始时间']) ->addColumn('outer_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'comment' => '结束时间']) - ->addColumn('loops_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '循环时间']) - ->addColumn('attempts', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行次数']) + ->addColumn('loops_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '循环时间']) + ->addColumn('attempts', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行次数']) ->addColumn('rscript', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '任务类型(0单例,1多例)']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '任务状态(1新任务,2处理中,3成功,4失败)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -334,7 +334,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -367,10 +367,10 @@ class InstallAdmin extends Migrator ->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系手机']) ->addColumn('login_ip', 'string', ['limit' => 255, 'default' => '', 'comment' => '登录地址']) ->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间']) - ->addColumn('login_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) + ->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) ->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'comment' => '备注说明']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除(1删除,0未删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_user_status']) @@ -379,6 +379,6 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } } diff --git a/app/data/database/20221013045838_install_user.php b/app/data/database/20221013045838_install_user.php index da2f3d72e..debf2f86c 100644 --- a/app/data/database/20221013045838_install_user.php +++ b/app/data/database/20221013045838_install_user.php @@ -62,7 +62,7 @@ class InstallUser extends Migrator ->addColumn('code_2', 'string', ['limit' => 50, 'default' => '', 'comment' => '百度快递100代码']) ->addColumn('code_3', 'string', ['limit' => 50, 'default' => '', 'comment' => '官方快递100代码']) ->addColumn('remark', 'string', ['limit' => 512, 'default' => '', 'comment' => '快递公司描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0.无效,1.有效)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(1已删除,0未删除)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -74,7 +74,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -96,7 +96,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-快递-区域', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级PID']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级PID']) ->addColumn('first', 'string', ['limit' => 50, 'default' => '', 'comment' => '首字母']) ->addColumn('short', 'string', ['limit' => 100, 'default' => '', 'comment' => '区域简称']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '区域名称']) @@ -111,7 +111,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -137,7 +137,7 @@ class InstallUser extends Migrator ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '模板名称']) ->addColumn('normal', 'text', ['default' => null, 'comment' => '默认规则']) ->addColumn('content', 'text', ['default' => null, 'comment' => '模板规则']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '模板状态']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -147,7 +147,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -172,7 +172,7 @@ class InstallUser extends Migrator ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '方案名称']) ->addColumn('items', 'text', ['default' => null, 'comment' => '方案规则']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '方案描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '方案状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -181,7 +181,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -206,8 +206,8 @@ class InstallUser extends Migrator ->addColumn('type', 'string', ['limit' => 50, 'default' => '', 'comment' => '消息类型']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '消息名称']) ->addColumn('content', 'text', ['default' => null, 'comment' => '消息内容']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '阅读次数']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读次数']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '消息状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -217,7 +217,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -245,7 +245,7 @@ class InstallUser extends Migrator ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付图标']) ->addColumn('content', 'text', ['default' => null, 'comment' => '支付参数']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '支付状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -256,7 +256,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -287,13 +287,13 @@ class InstallUser extends Migrator ->addColumn('order_amount_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '订单金额状态']) ->addColumn('order_amount_number', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单金额累计']) ->addColumn('teams_users_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '团队人数状态']) - ->addColumn('teams_users_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '团队人数累计']) + ->addColumn('teams_users_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '团队人数累计']) ->addColumn('teams_direct_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '直推人数状态']) - ->addColumn('teams_direct_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '直推人数累计']) + ->addColumn('teams_direct_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '直推人数累计']) ->addColumn('teams_indirect_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '间推人数状态']) - ->addColumn('teams_indirect_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '间推人数累计']) + ->addColumn('teams_indirect_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '间推人数累计']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户级别描述']) - ->addColumn('utime', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '等级更新时间']) + ->addColumn('utime', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '等级更新时间']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '用户等级状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '等级创建时间']) ->addIndex('status', ['name' => 'idx_base_user_upgrade_status']) @@ -301,7 +301,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -329,11 +329,11 @@ class InstallUser extends Migrator ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '文章封面']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) ->addColumn('content', 'text', ['default' => null, 'comment' => '文章内容']) - ->addColumn('num_like', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章点赞数']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章阅读数']) - ->addColumn('num_collect', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章收藏数']) - ->addColumn('num_comment', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章评论数']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('num_like', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章点赞数']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章阅读数']) + ->addColumn('num_collect', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章收藏数']) + ->addColumn('num_comment', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章评论数']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '文章状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -343,7 +343,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -367,7 +367,7 @@ class InstallUser extends Migrator ]) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '标签名称']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '标签说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '标签状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -376,7 +376,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -398,7 +398,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-文章-标记', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '记录类型(1收藏,2点赞,3历史,4评论)']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '文章编号']) ->addColumn('reply', 'text', ['default' => null, 'comment' => '评论内容']) @@ -411,7 +411,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -433,12 +433,12 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员', ]) - ->addColumn('pid0', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '临时推荐人UID']) - ->addColumn('pid1', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐人一级UID']) - ->addColumn('pid2', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐人二级UID']) + ->addColumn('pid0', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '临时推荐人UID']) + ->addColumn('pid1', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐人一级UID']) + ->addColumn('pid2', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐人二级UID']) ->addColumn('pids', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '推荐人绑定状态']) ->addColumn('path', 'string', ['limit' => 999, 'default' => '-', 'comment' => '推荐关系路径']) - ->addColumn('layer', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '推荐关系层级']) + ->addColumn('layer', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '推荐关系层级']) ->addColumn('openid1', 'string', ['limit' => 50, 'default' => '', 'comment' => '小程序OPENID']) ->addColumn('openid2', 'string', ['limit' => 50, 'default' => '', 'comment' => '服务号OPENID']) ->addColumn('unionid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号UnionID']) @@ -450,12 +450,12 @@ class InstallUser extends Migrator ->addColumn('region_province', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在省份']) ->addColumn('region_city', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在城市']) ->addColumn('region_area', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在区域']) - ->addColumn('base_age', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户年龄']) + ->addColumn('base_age', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户年龄']) ->addColumn('base_sex', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户性别']) ->addColumn('base_height', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户身高']) ->addColumn('base_weight', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户体重']) ->addColumn('base_birthday', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户生日']) - ->addColumn('vip_code', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => 'VIP等级编号']) + ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'comment' => 'VIP等级编号']) ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '普通用户', 'comment' => 'VIP等级名称']) ->addColumn('vip_order', 'string', ['limit' => 20, 'default' => '', 'comment' => 'VIP升级订单']) ->addColumn('vip_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => 'VIP等级时间']) @@ -466,9 +466,9 @@ class InstallUser extends Migrator ->addColumn('rebate_lock', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '返利锁定统计']) ->addColumn('balance_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '累计充值统计']) ->addColumn('balance_used', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '已经使用统计']) - ->addColumn('teams_users_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '团队人数统计']) - ->addColumn('teams_users_direct', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '直属人数团队']) - ->addColumn('teams_users_indirect', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '间接人数团队']) + ->addColumn('teams_users_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '团队人数统计']) + ->addColumn('teams_users_direct', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '直属人数团队']) + ->addColumn('teams_users_indirect', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '间接人数团队']) ->addColumn('order_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单交易统计']) ->addColumn('teams_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '二级团队业绩']) ->addColumn('teams_amount_direct', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '直属团队业绩']) @@ -489,7 +489,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -511,7 +511,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-地址', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '地址类型(0普通,1默认)']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '地址编号']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '收货姓名']) @@ -532,7 +532,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -554,14 +554,14 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-余额', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '充值编号']) ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '充值名称']) ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'comment' => '充值备注']) ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '充值金额']) ->addColumn('upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '强制升级']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '系统用户']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '系统用户']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('code', ['name' => 'idx_data_user_balance_code']) ->addIndex('deleted', ['name' => 'idx_data_user_balance_deleted']) @@ -569,7 +569,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -591,7 +591,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录用户']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录用户']) ->addColumn('phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户手机']) ->addColumn('regon_ip', 'string', ['limit' => 50, 'default' => '', 'comment' => '登录地址']) ->addColumn('region_prov', 'string', ['limit' => 50, 'default' => '', 'comment' => '所有省份']) @@ -602,7 +602,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -639,7 +639,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -679,7 +679,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -701,14 +701,14 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-返利', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励日期']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励编号']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励类型']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '奖励名称']) ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励数量']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '订单单号']) - ->addColumn('order_uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单用户']) + ->addColumn('order_uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单用户']) ->addColumn('order_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单金额']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '生效状态(0未生效,1已生效)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删除,1已删除)']) @@ -722,7 +722,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -744,9 +744,9 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-认证', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '授权类型']) - ->addColumn('time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '有效时间']) + ->addColumn('time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '有效时间']) ->addColumn('token', 'string', ['limit' => 32, 'default' => '', 'comment' => '授权令牌']) ->addColumn('tokenv', 'string', ['limit' => 32, 'default' => '', 'comment' => '授权验证']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -757,7 +757,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -779,7 +779,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-提现', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'string', ['limit' => 30, 'default' => '', 'comment' => '提现方式']) ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'comment' => '提现日期']) ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '提现单号']) @@ -817,7 +817,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -850,23 +850,23 @@ class InstallUser extends Migrator ->addColumn('payment', 'string', ['limit' => 999, 'default' => '', 'comment' => '支付方式']) ->addColumn('data_specs', 'text', ['default' => null, 'comment' => '商品规格(JSON)']) ->addColumn('data_items', 'text', ['default' => null, 'comment' => '商品规格(JSON)']) - ->addColumn('stock_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品库存统计']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品销售统计']) - ->addColumn('stock_virtual', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品虚拟销量']) + ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品库存统计']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品销售统计']) + ->addColumn('stock_virtual', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品虚拟销量']) ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '最低销售价格']) ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '最低市场价格']) - ->addColumn('discount_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '折扣方案编号']) + ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '折扣方案编号']) ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '物流运费模板']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送(0无需配送,1需要配送)']) ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '参与返利(0无需返利,1需要返利)']) ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '入会礼包(0非入会礼包,1是入会礼包)']) - ->addColumn('vip_upgrade', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '购买升级等级(0不升级,其他升级)']) - ->addColumn('limit_low_vip', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '限制最低等级(0不限制,其他限制)']) - ->addColumn('limit_max_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '最大购买数量(0不限制,其他限制)']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '访问阅读统计']) + ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '购买升级等级(0不升级,其他升级)']) + ->addColumn('limit_low_vip', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '限制最低等级(0不限制,其他限制)']) + ->addColumn('limit_max_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '最大购买数量(0不限制,其他限制)']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '访问阅读统计']) ->addColumn('state_hot', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '设置热度标签']) ->addColumn('state_home', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '设置首页推荐']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '列表排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '列表排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -876,7 +876,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -898,11 +898,11 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-分类', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级分类']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级分类']) ->addColumn('name', 'string', ['limit' => 255, 'default' => '', 'comment' => '分类名称']) ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '分类图标']) ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'comment' => '分类描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '使用状态']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -912,7 +912,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -937,12 +937,12 @@ class InstallUser extends Migrator ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品SKU']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品编号']) ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'comment' => '商品规格']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '销售数量']) - ->addColumn('stock_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品库存']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '销售数量']) + ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品库存']) ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '销售价格']) ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '市场价格']) - ->addColumn('number_virtual', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '虚拟销量']) - ->addColumn('number_express', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '配送计件']) + ->addColumn('number_virtual', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '虚拟销量']) + ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '配送计件']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励余额']) ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励积分']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态']) @@ -953,7 +953,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -977,7 +977,7 @@ class InstallUser extends Migrator ]) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '标签名称']) ->addColumn('remark', 'string', ['limit' => 200, 'default' => '', 'comment' => '标签描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '标签状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('sort', ['name' => 'idx_shop_goods_mark_sort']) @@ -985,7 +985,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1010,7 +1010,7 @@ class InstallUser extends Migrator ->addColumn('batch_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '操作批量']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品编号']) ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'comment' => '商品规格']) - ->addColumn('goods_stock', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '入库数量']) + ->addColumn('goods_stock', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '入库数量']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '数据状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -1019,7 +1019,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1041,9 +1041,9 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-内容', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '下单用户编号']) - ->addColumn('puid1', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐一层用户']) - ->addColumn('puid2', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐二层用户']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '下单用户编号']) + ->addColumn('puid1', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐一层用户']) + ->addColumn('puid2', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐二层用户']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品订单单号']) ->addColumn('amount_real', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单实际金额']) ->addColumn('amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单统计金额']) @@ -1061,8 +1061,8 @@ class InstallUser extends Migrator ->addColumn('payment_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '余额抵扣金额']) ->addColumn('payment_remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付结果描述']) ->addColumn('payment_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => '支付到账时间']) - ->addColumn('number_goods', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单商品数量']) - ->addColumn('number_express', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单快递计数']) + ->addColumn('number_goods', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单商品数量']) + ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单快递计数']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送类型(0无需配送,1需要配送)']) ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '参与返利金额']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励账户余额']) @@ -1085,7 +1085,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1107,7 +1107,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-商品', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城订单单号']) ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城商品SKU']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城商品编号']) @@ -1121,17 +1121,17 @@ class InstallUser extends Migrator ->addColumn('total_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品销售总价']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品奖励余额']) ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品奖励积分']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '包含商品数量']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '包含商品数量']) ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '', 'comment' => '用户等级名称']) - ->addColumn('vip_code', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户等级序号']) + ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户等级序号']) ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '是否入会礼包(0非礼包,1是礼包)']) - ->addColumn('vip_upgrade', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '升级用户等级']) + ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '升级用户等级']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送类型(0虚物,1实物)']) ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '快递邮费模板']) - ->addColumn('truck_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) + ->addColumn('truck_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '参与返利状态(0不返,1返利)']) ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '参与返利金额']) - ->addColumn('discount_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '优惠方案编号']) + ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '优惠方案编号']) ->addColumn('discount_rate', 'decimal', ['precision' => 20, 'scale' => 6, 'default' => '100.000000', 'comment' => '销售价格折扣']) ->addColumn('discount_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品优惠金额']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态(1使用,0禁用)']) @@ -1147,7 +1147,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1169,7 +1169,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-配送', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城订单单号']) ->addColumn('address_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '配送地址编号']) ->addColumn('address_name', 'string', ['limit' => 50, 'default' => '', 'comment' => '配送收货人姓名']) @@ -1183,7 +1183,7 @@ class InstallUser extends Migrator ->addColumn('address_content', 'string', ['limit' => 255, 'default' => '', 'comment' => '配送的详细地址']) ->addColumn('address_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => '地址确认时间']) ->addColumn('template_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '配送模板编号']) - ->addColumn('template_count', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) + ->addColumn('template_count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) ->addColumn('template_remark', 'string', ['limit' => 255, 'default' => '', 'comment' => '配送计算描述']) ->addColumn('template_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '配送计算金额']) ->addColumn('company_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '快递公司编码']) @@ -1201,6 +1201,6 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } } diff --git a/app/wechat/database/20221013045829_install_wechat.php b/app/wechat/database/20221013045829_install_wechat.php index fdc191472..64cd9bf8d 100644 --- a/app/wechat/database/20221013045829_install_wechat.php +++ b/app/wechat/database/20221013045829_install_wechat.php @@ -51,9 +51,9 @@ class InstallWechat extends Migrator ->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'comment' => '视频标题']) ->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频URL']) ->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('type', ['name' => 'idx_wechat_auto_type']) ->addIndex('time', ['name' => 'idx_wechat_auto_time']) @@ -62,7 +62,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -97,7 +97,7 @@ class InstallWechat extends Migrator ->addColumn('city', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在城市']) ->addColumn('language', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户的语言(zh_CN)']) ->addColumn('headimgurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户头像']) - ->addColumn('subscribe_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) + ->addColumn('subscribe_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) ->addColumn('subscribe_at', 'datetime', ['default' => null, 'comment' => '关注时间']) ->addColumn('remark', 'string', ['limit' => 50, 'default' => '', 'comment' => '备注']) ->addColumn('subscribe_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '扫码关注场景']) @@ -111,7 +111,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -135,14 +135,14 @@ class InstallWechat extends Migrator ]) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号APPID']) ->addColumn('name', 'string', ['limit' => 35, 'default' => '', 'comment' => '标签名称']) - ->addColumn('count', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '总数']) + ->addColumn('count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '总数']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建日期']) ->addIndex('id', ['name' => 'idx_wechat_fans_tags_id']) ->addIndex('appid', ['name' => 'idx_wechat_fans_tags_appid']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -177,10 +177,10 @@ class InstallWechat extends Migrator ->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'comment' => '视频标题']) ->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频URL']) ->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序字段']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序字段']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('appid', ['name' => 'idx_wechat_keys_appid']) ->addIndex('type', ['name' => 'idx_wechat_keys_type']) @@ -188,7 +188,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -224,7 +224,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -251,13 +251,13 @@ class InstallWechat extends Migrator ->addColumn('article_id', 'string', ['limit' => 60, 'default' => '', 'comment' => '关联图文ID(用英文逗号做分割)']) ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删除,1已删除)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addIndex('article_id', ['name' => 'idx_wechat_news_article_id']) ->addIndex('media_id', ['name' => 'idx_wechat_news_media_id']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -286,11 +286,11 @@ class InstallWechat extends Migrator ->addColumn('digest', 'string', ['limit' => 300, 'default' => '', 'comment' => '摘要内容']) ->addColumn('content', 'text', ['default' => null, 'comment' => '图文内容']) ->addColumn('content_source_url', 'string', ['limit' => 200, 'default' => '', 'comment' => '原文地址']) - ->addColumn('read_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) + ->addColumn('read_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } } diff --git a/database/migrations/20221013031925_install_admin.php b/database/migrations/20221013031925_install_admin.php index f9af34e1b..134a85c86 100644 --- a/database/migrations/20221013031925_install_admin.php +++ b/database/migrations/20221013031925_install_admin.php @@ -43,7 +43,7 @@ class InstallAdmin extends Migrator ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '权限名称']) ->addColumn('utype', 'string', ['limit' => 50, 'default' => '', 'comment' => '身份权限']) ->addColumn('desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '权限状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_auth_status']) @@ -51,7 +51,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -73,14 +73,14 @@ class InstallAdmin extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', ]) - ->addColumn('auth', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '角色']) + ->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色']) ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点']) ->addIndex('auth', ['name' => 'idx_system_auth_node_auth']) ->addIndex('node', ['name' => 'idx_system_auth_node_node']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -106,11 +106,11 @@ class InstallAdmin extends Migrator ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据代码']) ->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '数据名称']) ->addColumn('content', 'text', ['default' => null, 'comment' => '数据内容']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '数据状态(0禁用,1启动)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0正常,1已删)']) ->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '删除时间']) - ->addColumn('deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) + ->addColumn('deleted_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除用户']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('type', ['name' => 'idx_system_base_type']) ->addIndex('code', ['name' => 'idx_system_base_code']) @@ -118,7 +118,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -148,7 +148,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -176,7 +176,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -205,8 +205,8 @@ class InstallAdmin extends Migrator ->addColumn('xurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '访问链接']) ->addColumn('xkey', 'string', ['limit' => 500, 'default' => '', 'comment' => '文件路径']) ->addColumn('mime', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件类型']) - ->addColumn('size', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文件大小']) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户编号']) + ->addColumn('size', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文件大小']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户编号']) ->addColumn('isfast', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '是否秒传']) ->addColumn('issafe', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '安全模式']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '上传状态(1悬空,2落地)']) @@ -222,7 +222,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -244,7 +244,7 @@ class InstallAdmin extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级ID']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级ID']) ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单名称']) ->addColumn('icon', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单图标']) ->addColumn('node', 'string', ['limit' => 100, 'default' => '', 'comment' => '节点代码']) @@ -258,7 +258,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -289,7 +289,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -314,14 +314,14 @@ class InstallAdmin extends Migrator ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号']) ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '任务名称']) ->addColumn('command', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行指令']) - ->addColumn('exec_pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行进程']) + ->addColumn('exec_pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行进程']) ->addColumn('exec_data', 'text', ['default' => null, 'comment' => '执行参数']) - ->addColumn('exec_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行时间']) + ->addColumn('exec_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行时间']) ->addColumn('exec_desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '执行描述']) ->addColumn('enter_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'comment' => '开始时间']) ->addColumn('outer_time', 'decimal', ['precision' => 20, 'scale' => 4, 'default' => '0.0000', 'comment' => '结束时间']) - ->addColumn('loops_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '循环时间']) - ->addColumn('attempts', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '执行次数']) + ->addColumn('loops_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '循环时间']) + ->addColumn('attempts', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '执行次数']) ->addColumn('rscript', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '任务类型(0单例,1多例)']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '任务状态(1新任务,2处理中,3成功,4失败)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -334,7 +334,7 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -367,10 +367,10 @@ class InstallAdmin extends Migrator ->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系手机']) ->addColumn('login_ip', 'string', ['limit' => 255, 'default' => '', 'comment' => '登录地址']) ->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间']) - ->addColumn('login_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) + ->addColumn('login_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录次数']) ->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'comment' => '备注说明']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除(1删除,0未删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('status', ['name' => 'idx_system_user_status']) @@ -379,6 +379,6 @@ class InstallAdmin extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } } diff --git a/database/migrations/20221013045829_install_wechat.php b/database/migrations/20221013045829_install_wechat.php index fdc191472..64cd9bf8d 100644 --- a/database/migrations/20221013045829_install_wechat.php +++ b/database/migrations/20221013045829_install_wechat.php @@ -51,9 +51,9 @@ class InstallWechat extends Migrator ->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'comment' => '视频标题']) ->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频URL']) ->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('type', ['name' => 'idx_wechat_auto_type']) ->addIndex('time', ['name' => 'idx_wechat_auto_time']) @@ -62,7 +62,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -97,7 +97,7 @@ class InstallWechat extends Migrator ->addColumn('city', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户所在城市']) ->addColumn('language', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户的语言(zh_CN)']) ->addColumn('headimgurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户头像']) - ->addColumn('subscribe_time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) + ->addColumn('subscribe_time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '关注时间']) ->addColumn('subscribe_at', 'datetime', ['default' => null, 'comment' => '关注时间']) ->addColumn('remark', 'string', ['limit' => 50, 'default' => '', 'comment' => '备注']) ->addColumn('subscribe_scene', 'string', ['limit' => 200, 'default' => '', 'comment' => '扫码关注场景']) @@ -111,7 +111,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -135,14 +135,14 @@ class InstallWechat extends Migrator ]) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号APPID']) ->addColumn('name', 'string', ['limit' => 35, 'default' => '', 'comment' => '标签名称']) - ->addColumn('count', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '总数']) + ->addColumn('count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '总数']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建日期']) ->addIndex('id', ['name' => 'idx_wechat_fans_tags_id']) ->addIndex('appid', ['name' => 'idx_wechat_fans_tags_appid']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -177,10 +177,10 @@ class InstallWechat extends Migrator ->addColumn('video_title', 'string', ['limit' => 100, 'default' => '', 'comment' => '视频标题']) ->addColumn('video_url', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频URL']) ->addColumn('video_desc', 'string', ['limit' => 255, 'default' => '', 'comment' => '视频描述']) - ->addColumn('news_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序字段']) + ->addColumn('news_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '图文ID']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序字段']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0禁用,1启用)']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('appid', ['name' => 'idx_wechat_keys_appid']) ->addIndex('type', ['name' => 'idx_wechat_keys_type']) @@ -188,7 +188,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -224,7 +224,7 @@ class InstallWechat extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -251,13 +251,13 @@ class InstallWechat extends Migrator ->addColumn('article_id', 'string', ['limit' => 60, 'default' => '', 'comment' => '关联图文ID(用英文逗号做分割)']) ->addColumn('is_deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删除,1已删除)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '创建人']) ->addIndex('article_id', ['name' => 'idx_wechat_news_article_id']) ->addIndex('media_id', ['name' => 'idx_wechat_news_media_id']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -286,11 +286,11 @@ class InstallWechat extends Migrator ->addColumn('digest', 'string', ['limit' => 300, 'default' => '', 'comment' => '摘要内容']) ->addColumn('content', 'text', ['default' => null, 'comment' => '图文内容']) ->addColumn('content_source_url', 'string', ['limit' => 200, 'default' => '', 'comment' => '原文地址']) - ->addColumn('read_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) + ->addColumn('read_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读数量']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } } diff --git a/database/migrations/20221013045838_install_user.php b/database/migrations/20221013045838_install_user.php index da2f3d72e..debf2f86c 100644 --- a/database/migrations/20221013045838_install_user.php +++ b/database/migrations/20221013045838_install_user.php @@ -62,7 +62,7 @@ class InstallUser extends Migrator ->addColumn('code_2', 'string', ['limit' => 50, 'default' => '', 'comment' => '百度快递100代码']) ->addColumn('code_3', 'string', ['limit' => 50, 'default' => '', 'comment' => '官方快递100代码']) ->addColumn('remark', 'string', ['limit' => 512, 'default' => '', 'comment' => '快递公司描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '状态(0.无效,1.有效)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(1已删除,0未删除)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -74,7 +74,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -96,7 +96,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-快递-区域', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级PID']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级PID']) ->addColumn('first', 'string', ['limit' => 50, 'default' => '', 'comment' => '首字母']) ->addColumn('short', 'string', ['limit' => 100, 'default' => '', 'comment' => '区域简称']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '区域名称']) @@ -111,7 +111,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -137,7 +137,7 @@ class InstallUser extends Migrator ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '模板名称']) ->addColumn('normal', 'text', ['default' => null, 'comment' => '默认规则']) ->addColumn('content', 'text', ['default' => null, 'comment' => '模板规则']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '模板状态']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -147,7 +147,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -172,7 +172,7 @@ class InstallUser extends Migrator ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '方案名称']) ->addColumn('items', 'text', ['default' => null, 'comment' => '方案规则']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '方案描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '方案状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -181,7 +181,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -206,8 +206,8 @@ class InstallUser extends Migrator ->addColumn('type', 'string', ['limit' => 50, 'default' => '', 'comment' => '消息类型']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '消息名称']) ->addColumn('content', 'text', ['default' => null, 'comment' => '消息内容']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '阅读次数']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '阅读次数']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '消息状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -217,7 +217,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -245,7 +245,7 @@ class InstallUser extends Migrator ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付图标']) ->addColumn('content', 'text', ['default' => null, 'comment' => '支付参数']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '支付状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -256,7 +256,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -287,13 +287,13 @@ class InstallUser extends Migrator ->addColumn('order_amount_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '订单金额状态']) ->addColumn('order_amount_number', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单金额累计']) ->addColumn('teams_users_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '团队人数状态']) - ->addColumn('teams_users_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '团队人数累计']) + ->addColumn('teams_users_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '团队人数累计']) ->addColumn('teams_direct_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '直推人数状态']) - ->addColumn('teams_direct_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '直推人数累计']) + ->addColumn('teams_direct_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '直推人数累计']) ->addColumn('teams_indirect_status', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '间推人数状态']) - ->addColumn('teams_indirect_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '间推人数累计']) + ->addColumn('teams_indirect_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '间推人数累计']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '用户级别描述']) - ->addColumn('utime', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '等级更新时间']) + ->addColumn('utime', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '等级更新时间']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '用户等级状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '等级创建时间']) ->addIndex('status', ['name' => 'idx_base_user_upgrade_status']) @@ -301,7 +301,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -329,11 +329,11 @@ class InstallUser extends Migrator ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '文章封面']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明']) ->addColumn('content', 'text', ['default' => null, 'comment' => '文章内容']) - ->addColumn('num_like', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章点赞数']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章阅读数']) - ->addColumn('num_collect', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章收藏数']) - ->addColumn('num_comment', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '文章评论数']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('num_like', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章点赞数']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章阅读数']) + ->addColumn('num_collect', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章收藏数']) + ->addColumn('num_comment', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文章评论数']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '文章状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -343,7 +343,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -367,7 +367,7 @@ class InstallUser extends Migrator ]) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '标签名称']) ->addColumn('remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '标签说明']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '标签状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -376,7 +376,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -398,7 +398,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-文章-标记', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '记录类型(1收藏,2点赞,3历史,4评论)']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '文章编号']) ->addColumn('reply', 'text', ['default' => null, 'comment' => '评论内容']) @@ -411,7 +411,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -433,12 +433,12 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员', ]) - ->addColumn('pid0', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '临时推荐人UID']) - ->addColumn('pid1', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐人一级UID']) - ->addColumn('pid2', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐人二级UID']) + ->addColumn('pid0', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '临时推荐人UID']) + ->addColumn('pid1', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐人一级UID']) + ->addColumn('pid2', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐人二级UID']) ->addColumn('pids', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '推荐人绑定状态']) ->addColumn('path', 'string', ['limit' => 999, 'default' => '-', 'comment' => '推荐关系路径']) - ->addColumn('layer', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '推荐关系层级']) + ->addColumn('layer', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '推荐关系层级']) ->addColumn('openid1', 'string', ['limit' => 50, 'default' => '', 'comment' => '小程序OPENID']) ->addColumn('openid2', 'string', ['limit' => 50, 'default' => '', 'comment' => '服务号OPENID']) ->addColumn('unionid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号UnionID']) @@ -450,12 +450,12 @@ class InstallUser extends Migrator ->addColumn('region_province', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在省份']) ->addColumn('region_city', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在城市']) ->addColumn('region_area', 'string', ['limit' => 30, 'default' => '', 'comment' => '所在区域']) - ->addColumn('base_age', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户年龄']) + ->addColumn('base_age', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户年龄']) ->addColumn('base_sex', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户性别']) ->addColumn('base_height', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户身高']) ->addColumn('base_weight', 'string', ['limit' => 10, 'default' => '', 'comment' => '用户体重']) ->addColumn('base_birthday', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户生日']) - ->addColumn('vip_code', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => 'VIP等级编号']) + ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'comment' => 'VIP等级编号']) ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '普通用户', 'comment' => 'VIP等级名称']) ->addColumn('vip_order', 'string', ['limit' => 20, 'default' => '', 'comment' => 'VIP升级订单']) ->addColumn('vip_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => 'VIP等级时间']) @@ -466,9 +466,9 @@ class InstallUser extends Migrator ->addColumn('rebate_lock', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '返利锁定统计']) ->addColumn('balance_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '累计充值统计']) ->addColumn('balance_used', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '已经使用统计']) - ->addColumn('teams_users_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '团队人数统计']) - ->addColumn('teams_users_direct', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '直属人数团队']) - ->addColumn('teams_users_indirect', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '间接人数团队']) + ->addColumn('teams_users_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '团队人数统计']) + ->addColumn('teams_users_direct', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '直属人数团队']) + ->addColumn('teams_users_indirect', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '间接人数团队']) ->addColumn('order_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单交易统计']) ->addColumn('teams_amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '二级团队业绩']) ->addColumn('teams_amount_direct', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '直属团队业绩']) @@ -489,7 +489,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -511,7 +511,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-地址', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '地址类型(0普通,1默认)']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '地址编号']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '收货姓名']) @@ -532,7 +532,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -554,14 +554,14 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-余额', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '充值编号']) ->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '充值名称']) ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'comment' => '充值备注']) ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '充值金额']) ->addColumn('upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '强制升级']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) - ->addColumn('create_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '系统用户']) + ->addColumn('create_by', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '系统用户']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('code', ['name' => 'idx_data_user_balance_code']) ->addIndex('deleted', ['name' => 'idx_data_user_balance_deleted']) @@ -569,7 +569,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -591,7 +591,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-会员', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录用户']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '登录用户']) ->addColumn('phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户手机']) ->addColumn('regon_ip', 'string', ['limit' => 50, 'default' => '', 'comment' => '登录地址']) ->addColumn('region_prov', 'string', ['limit' => 50, 'default' => '', 'comment' => '所有省份']) @@ -602,7 +602,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -639,7 +639,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -679,7 +679,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -701,14 +701,14 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-返利', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励日期']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励编号']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '奖励类型']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '奖励名称']) ->addColumn('amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励数量']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '订单单号']) - ->addColumn('order_uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单用户']) + ->addColumn('order_uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单用户']) ->addColumn('order_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单金额']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '生效状态(0未生效,1已生效)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删除,1已删除)']) @@ -722,7 +722,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -744,9 +744,9 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-认证', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '授权类型']) - ->addColumn('time', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '有效时间']) + ->addColumn('time', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '有效时间']) ->addColumn('token', 'string', ['limit' => 32, 'default' => '', 'comment' => '授权令牌']) ->addColumn('tokenv', 'string', ['limit' => 32, 'default' => '', 'comment' => '授权验证']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -757,7 +757,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -779,7 +779,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '数据-用户-提现', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户UID']) ->addColumn('type', 'string', ['limit' => 30, 'default' => '', 'comment' => '提现方式']) ->addColumn('date', 'string', ['limit' => 20, 'default' => '', 'comment' => '提现日期']) ->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '提现单号']) @@ -817,7 +817,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -850,23 +850,23 @@ class InstallUser extends Migrator ->addColumn('payment', 'string', ['limit' => 999, 'default' => '', 'comment' => '支付方式']) ->addColumn('data_specs', 'text', ['default' => null, 'comment' => '商品规格(JSON)']) ->addColumn('data_items', 'text', ['default' => null, 'comment' => '商品规格(JSON)']) - ->addColumn('stock_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品库存统计']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品销售统计']) - ->addColumn('stock_virtual', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品虚拟销量']) + ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品库存统计']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品销售统计']) + ->addColumn('stock_virtual', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品虚拟销量']) ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '最低销售价格']) ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '最低市场价格']) - ->addColumn('discount_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '折扣方案编号']) + ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '折扣方案编号']) ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '物流运费模板']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送(0无需配送,1需要配送)']) ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '参与返利(0无需返利,1需要返利)']) ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '入会礼包(0非入会礼包,1是入会礼包)']) - ->addColumn('vip_upgrade', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '购买升级等级(0不升级,其他升级)']) - ->addColumn('limit_low_vip', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '限制最低等级(0不限制,其他限制)']) - ->addColumn('limit_max_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '最大购买数量(0不限制,其他限制)']) - ->addColumn('num_read', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '访问阅读统计']) + ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '购买升级等级(0不升级,其他升级)']) + ->addColumn('limit_low_vip', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '限制最低等级(0不限制,其他限制)']) + ->addColumn('limit_max_num', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '最大购买数量(0不限制,其他限制)']) + ->addColumn('num_read', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '访问阅读统计']) ->addColumn('state_hot', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '设置热度标签']) ->addColumn('state_home', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '设置首页推荐']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '列表排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '列表排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -876,7 +876,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -898,11 +898,11 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-商品-分类', ]) - ->addColumn('pid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '上级分类']) + ->addColumn('pid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '上级分类']) ->addColumn('name', 'string', ['limit' => 255, 'default' => '', 'comment' => '分类名称']) ->addColumn('cover', 'string', ['limit' => 500, 'default' => '', 'comment' => '分类图标']) ->addColumn('remark', 'string', ['limit' => 999, 'default' => '', 'comment' => '分类描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '使用状态']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -912,7 +912,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -937,12 +937,12 @@ class InstallUser extends Migrator ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品SKU']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品编号']) ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'comment' => '商品规格']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '销售数量']) - ->addColumn('stock_total', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商品库存']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '销售数量']) + ->addColumn('stock_total', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商品库存']) ->addColumn('price_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '销售价格']) ->addColumn('price_market', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '市场价格']) - ->addColumn('number_virtual', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '虚拟销量']) - ->addColumn('number_express', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '配送计件']) + ->addColumn('number_virtual', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '虚拟销量']) + ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '配送计件']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励余额']) ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励积分']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态']) @@ -953,7 +953,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -977,7 +977,7 @@ class InstallUser extends Migrator ]) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '标签名称']) ->addColumn('remark', 'string', ['limit' => 200, 'default' => '', 'comment' => '标签描述']) - ->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) + ->addColumn('sort', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '排序权重']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '标签状态(1使用,0禁用)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) ->addIndex('sort', ['name' => 'idx_shop_goods_mark_sort']) @@ -985,7 +985,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1010,7 +1010,7 @@ class InstallUser extends Migrator ->addColumn('batch_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '操作批量']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品编号']) ->addColumn('goods_spec', 'string', ['limit' => 100, 'default' => '', 'comment' => '商品规格']) - ->addColumn('goods_stock', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '入库数量']) + ->addColumn('goods_stock', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '入库数量']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '数据状态(1使用,0禁用)']) ->addColumn('deleted', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '删除状态(0未删,1已删)']) ->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间']) @@ -1019,7 +1019,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1041,9 +1041,9 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-内容', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '下单用户编号']) - ->addColumn('puid1', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐一层用户']) - ->addColumn('puid2', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '推荐二层用户']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '下单用户编号']) + ->addColumn('puid1', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐一层用户']) + ->addColumn('puid2', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '推荐二层用户']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商品订单单号']) ->addColumn('amount_real', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单实际金额']) ->addColumn('amount_total', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '订单统计金额']) @@ -1061,8 +1061,8 @@ class InstallUser extends Migrator ->addColumn('payment_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '余额抵扣金额']) ->addColumn('payment_remark', 'string', ['limit' => 500, 'default' => '', 'comment' => '支付结果描述']) ->addColumn('payment_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => '支付到账时间']) - ->addColumn('number_goods', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单商品数量']) - ->addColumn('number_express', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '订单快递计数']) + ->addColumn('number_goods', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单商品数量']) + ->addColumn('number_express', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '订单快递计数']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送类型(0无需配送,1需要配送)']) ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '参与返利金额']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '奖励账户余额']) @@ -1085,7 +1085,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1107,7 +1107,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-商品', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城订单单号']) ->addColumn('goods_sku', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城商品SKU']) ->addColumn('goods_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城商品编号']) @@ -1121,17 +1121,17 @@ class InstallUser extends Migrator ->addColumn('total_selling', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品销售总价']) ->addColumn('reward_balance', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品奖励余额']) ->addColumn('reward_integral', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品奖励积分']) - ->addColumn('stock_sales', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '包含商品数量']) + ->addColumn('stock_sales', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '包含商品数量']) ->addColumn('vip_name', 'string', ['limit' => 30, 'default' => '', 'comment' => '用户等级名称']) - ->addColumn('vip_code', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '用户等级序号']) + ->addColumn('vip_code', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户等级序号']) ->addColumn('vip_entry', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '是否入会礼包(0非礼包,1是礼包)']) - ->addColumn('vip_upgrade', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '升级用户等级']) + ->addColumn('vip_upgrade', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '升级用户等级']) ->addColumn('truck_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '物流配送类型(0虚物,1实物)']) ->addColumn('truck_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '快递邮费模板']) - ->addColumn('truck_number', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) + ->addColumn('truck_number', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) ->addColumn('rebate_type', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '参与返利状态(0不返,1返利)']) ->addColumn('rebate_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '参与返利金额']) - ->addColumn('discount_id', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '优惠方案编号']) + ->addColumn('discount_id', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '优惠方案编号']) ->addColumn('discount_rate', 'decimal', ['precision' => 20, 'scale' => 6, 'default' => '100.000000', 'comment' => '销售价格折扣']) ->addColumn('discount_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '商品优惠金额']) ->addColumn('status', 'integer', ['limit' => 1, 'default' => 1, 'comment' => '商品状态(1使用,0禁用)']) @@ -1147,7 +1147,7 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } /** @@ -1169,7 +1169,7 @@ class InstallUser extends Migrator $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '商城-订单-配送', ]) - ->addColumn('uuid', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) + ->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '商城用户编号']) ->addColumn('order_no', 'string', ['limit' => 20, 'default' => '', 'comment' => '商城订单单号']) ->addColumn('address_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '配送地址编号']) ->addColumn('address_name', 'string', ['limit' => 50, 'default' => '', 'comment' => '配送收货人姓名']) @@ -1183,7 +1183,7 @@ class InstallUser extends Migrator ->addColumn('address_content', 'string', ['limit' => 255, 'default' => '', 'comment' => '配送的详细地址']) ->addColumn('address_datetime', 'string', ['limit' => 20, 'default' => '', 'comment' => '地址确认时间']) ->addColumn('template_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '配送模板编号']) - ->addColumn('template_count', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) + ->addColumn('template_count', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '快递计费基数']) ->addColumn('template_remark', 'string', ['limit' => 255, 'default' => '', 'comment' => '配送计算描述']) ->addColumn('template_amount', 'decimal', ['precision' => 20, 'scale' => 2, 'default' => '0.00', 'comment' => '配送计算金额']) ->addColumn('company_code', 'string', ['limit' => 20, 'default' => '', 'comment' => '快递公司编码']) @@ -1201,6 +1201,6 @@ class InstallUser extends Migrator ->save(); // 修改主键长度 - $this->table($table)->changeColumn('id', 'biginteger', ['limit' => 20, 'identity' => true]); + $this->table($table)->changeColumn('id', 'integer', ['limit' => 20, 'identity' => true]); } }