From 191fced9ec96c7067a37c2f935c71f7671b4795d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Thu, 13 Oct 2022 17:13:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/20221013045331_system_oplog.php | 10 ++++++---- database/migrations/20221013045619_system_queue.php | 9 +++++---- database/migrations/20221013045828_system_user.php | 1 + database/migrations/20221013045829_wechat_auto.php | 10 ++++++---- 4 files changed, 18 insertions(+), 12 deletions(-) diff --git a/database/migrations/20221013045331_system_oplog.php b/database/migrations/20221013045331_system_oplog.php index 5f47e8b4f..0a28538aa 100644 --- a/database/migrations/20221013045331_system_oplog.php +++ b/database/migrations/20221013045331_system_oplog.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class SystemOplog extends Migrator { - private $name = 'system_oplog'; - public function change() { + // 当前操作 + $table = 'system_oplog'; + // 存在则跳过 - if ($this->hasTable($this->name)) { + if ($this->hasTable($table)) { return; } + // 创建数据表 - $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-日志', ]) ->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '当前操作节点']) diff --git a/database/migrations/20221013045619_system_queue.php b/database/migrations/20221013045619_system_queue.php index fa9a0d698..2fd0c1733 100644 --- a/database/migrations/20221013045619_system_queue.php +++ b/database/migrations/20221013045619_system_queue.php @@ -7,16 +7,17 @@ use think\migration\Migrator; */ class SystemQueue extends Migrator { - private $name = 'system_queue'; - public function change() { + // 当前操作 + $table = 'system_queue'; + // 存在则跳过 - if ($this->hasTable($this->name)) { + if ($this->hasTable($table)) { return; } // 创建数据表 - $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-任务', ]) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号']) diff --git a/database/migrations/20221013045828_system_user.php b/database/migrations/20221013045828_system_user.php index aaa11b9d3..41aede439 100644 --- a/database/migrations/20221013045828_system_user.php +++ b/database/migrations/20221013045828_system_user.php @@ -15,6 +15,7 @@ class SystemUser extends Migrator 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 76f603a4e..1e5648fcb 100644 --- a/database/migrations/20221013045829_wechat_auto.php +++ b/database/migrations/20221013045829_wechat_auto.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatAuto extends Migrator { - private $name = 'wechat_auto'; - public function change() { + // 当前操作 + $table = 'wechat_auto'; + // 存在则跳过 - if ($this->hasTable($this->name)) { + if ($this->hasTable($table)) { return; } + // 创建数据表 - $this->table($this->name, [ + $this->table($table, [ 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复', ]) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)'])