diff --git a/database/migrations/20221013031925_system_auth.php b/database/migrations/20221013031925_system_auth.php index f81a3c01c..11af2820e 100644 --- a/database/migrations/20221013031925_system_auth.php +++ b/database/migrations/20221013031925_system_auth.php @@ -11,6 +11,10 @@ class SystemAuth extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限', diff --git a/database/migrations/20221013032309_system_auth_node.php b/database/migrations/20221013032309_system_auth_node.php index 9c2361428..98d2a6051 100644 --- a/database/migrations/20221013032309_system_auth_node.php +++ b/database/migrations/20221013032309_system_auth_node.php @@ -11,6 +11,10 @@ class SystemAuthNode extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权', diff --git a/database/migrations/20221013032525_system_base.php b/database/migrations/20221013032525_system_base.php index 1073b2c2a..3ccf1e922 100644 --- a/database/migrations/20221013032525_system_base.php +++ b/database/migrations/20221013032525_system_base.php @@ -11,6 +11,10 @@ class SystemBase extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-字典', diff --git a/database/migrations/20221013033419_system_config.php b/database/migrations/20221013033419_system_config.php index f025dfe6e..3a7821f55 100644 --- a/database/migrations/20221013033419_system_config.php +++ b/database/migrations/20221013033419_system_config.php @@ -11,6 +11,10 @@ class SystemConfig extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置', diff --git a/database/migrations/20221013033914_system_data.php b/database/migrations/20221013033914_system_data.php index 81ad2bd12..26b6493d8 100644 --- a/database/migrations/20221013033914_system_data.php +++ b/database/migrations/20221013033914_system_data.php @@ -11,6 +11,10 @@ class SystemData extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据', diff --git a/database/migrations/20221013034059_system_file.php b/database/migrations/20221013034059_system_file.php index 3e08bf34a..3cfa19e9d 100644 --- a/database/migrations/20221013034059_system_file.php +++ b/database/migrations/20221013034059_system_file.php @@ -11,6 +11,10 @@ class SystemFile extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-文件', diff --git a/database/migrations/20221013034618_system_menu.php b/database/migrations/20221013034618_system_menu.php index 6d9d7996b..98128c3c1 100644 --- a/database/migrations/20221013034618_system_menu.php +++ b/database/migrations/20221013034618_system_menu.php @@ -11,6 +11,10 @@ class SystemMenu extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单', diff --git a/database/migrations/20221013045331_system_oplog.php b/database/migrations/20221013045331_system_oplog.php index 0c0b921ae..5f47e8b4f 100644 --- a/database/migrations/20221013045331_system_oplog.php +++ b/database/migrations/20221013045331_system_oplog.php @@ -11,6 +11,10 @@ class SystemOplog extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-日志', diff --git a/database/migrations/20221013045619_system_queue.php b/database/migrations/20221013045619_system_queue.php index 8bc32a6e6..7ab9bfadd 100644 --- a/database/migrations/20221013045619_system_queue.php +++ b/database/migrations/20221013045619_system_queue.php @@ -11,6 +11,10 @@ class SystemQueue extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务', diff --git a/database/migrations/20221013045828_system_user.php b/database/migrations/20221013045828_system_user.php index 30afe6011..aaa11b9d3 100644 --- a/database/migrations/20221013045828_system_user.php +++ b/database/migrations/20221013045828_system_user.php @@ -11,6 +11,10 @@ class SystemUser extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $table = $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-用户', diff --git a/database/migrations/20221013045829_wechat_auto.php b/database/migrations/20221013045829_wechat_auto.php index b079d1f22..76f603a4e 100644 --- a/database/migrations/20221013045829_wechat_auto.php +++ b/database/migrations/20221013045829_wechat_auto.php @@ -11,6 +11,10 @@ class WechatAuto extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复', diff --git a/database/migrations/20221013045830_wechat_fans.php b/database/migrations/20221013045830_wechat_fans.php index 6122853d0..79ae0e8bc 100644 --- a/database/migrations/20221013045830_wechat_fans.php +++ b/database/migrations/20221013045830_wechat_fans.php @@ -11,6 +11,10 @@ class WechatFans extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝', diff --git a/database/migrations/20221013045831_wechat_fans_tags.php b/database/migrations/20221013045831_wechat_fans_tags.php index 623614dae..f9c015f99 100644 --- a/database/migrations/20221013045831_wechat_fans_tags.php +++ b/database/migrations/20221013045831_wechat_fans_tags.php @@ -11,6 +11,10 @@ class WechatFansTags extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签', diff --git a/database/migrations/20221013045832_wechat_keys.php b/database/migrations/20221013045832_wechat_keys.php index 242831835..5bdcc7d52 100644 --- a/database/migrations/20221013045832_wechat_keys.php +++ b/database/migrations/20221013045832_wechat_keys.php @@ -11,6 +11,10 @@ class WechatKeys extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则', diff --git a/database/migrations/20221013045833_wechat_media.php b/database/migrations/20221013045833_wechat_media.php index b0f93d745..c4013bb5f 100644 --- a/database/migrations/20221013045833_wechat_media.php +++ b/database/migrations/20221013045833_wechat_media.php @@ -11,6 +11,10 @@ class WechatMedia extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材', diff --git a/database/migrations/20221013045834_wechat_news.php b/database/migrations/20221013045834_wechat_news.php index 6af99dab8..de824cf4c 100644 --- a/database/migrations/20221013045834_wechat_news.php +++ b/database/migrations/20221013045834_wechat_news.php @@ -11,6 +11,10 @@ class WechatNews extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文', diff --git a/database/migrations/20221013045835_wechat_news_article.php b/database/migrations/20221013045835_wechat_news_article.php index feef67984..ff3d97218 100644 --- a/database/migrations/20221013045835_wechat_news_article.php +++ b/database/migrations/20221013045835_wechat_news_article.php @@ -11,6 +11,10 @@ class WechatNewsArticle extends Migrator public function change() { + // 存在则跳过 + if ($this->hasTable($this->name)) { + return; + } // 创建数据表 $this->table($this->name, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章',