From 6a7c9a2a0be428298b80781598874b22bcf68909 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:10:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=95=B0=E6=8D=AE=E5=BA=93?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/20221013045830_wechat_fans.php | 10 ++++++---- .../migrations/20221013045831_wechat_fans_tags.php | 10 ++++++---- database/migrations/20221013045832_wechat_keys.php | 10 ++++++---- database/migrations/20221013045833_wechat_media.php | 10 ++++++---- database/migrations/20221013045834_wechat_news.php | 10 ++++++---- 5 files changed, 30 insertions(+), 20 deletions(-) diff --git a/database/migrations/20221013045830_wechat_fans.php b/database/migrations/20221013045830_wechat_fans.php index 79ae0e8bc..b91d7083b 100644 --- a/database/migrations/20221013045830_wechat_fans.php +++ b/database/migrations/20221013045830_wechat_fans.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatFans extends Migrator { - private $name = 'wechat_fans'; - public function change() { + // 当前操作 + $table = 'wechat_fans'; + // 存在则跳过 - 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('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) diff --git a/database/migrations/20221013045831_wechat_fans_tags.php b/database/migrations/20221013045831_wechat_fans_tags.php index f9c015f99..d7f3adb04 100644 --- a/database/migrations/20221013045831_wechat_fans_tags.php +++ b/database/migrations/20221013045831_wechat_fans_tags.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatFansTags extends Migrator { - private $name = 'wechat_fans_tags'; - public function change() { + // 当前操作 + $table = 'wechat_fans_tags'; + // 存在则跳过 - 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('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) diff --git a/database/migrations/20221013045832_wechat_keys.php b/database/migrations/20221013045832_wechat_keys.php index 5bdcc7d52..fa659d597 100644 --- a/database/migrations/20221013045832_wechat_keys.php +++ b/database/migrations/20221013045832_wechat_keys.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatKeys extends Migrator { - private $name = 'wechat_keys'; - public function change() { + // 当前操作 + $table = 'wechat_keys'; + // 存在则跳过 - 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)']) diff --git a/database/migrations/20221013045833_wechat_media.php b/database/migrations/20221013045833_wechat_media.php index c4013bb5f..6962f55b9 100644 --- a/database/migrations/20221013045833_wechat_media.php +++ b/database/migrations/20221013045833_wechat_media.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatMedia extends Migrator { - private $name = 'wechat_media'; - public function change() { + // 当前操作 + $table = 'wechat_media'; + // 存在则跳过 - 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('md5', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希']) diff --git a/database/migrations/20221013045834_wechat_news.php b/database/migrations/20221013045834_wechat_news.php index de824cf4c..dda014176 100644 --- a/database/migrations/20221013045834_wechat_news.php +++ b/database/migrations/20221013045834_wechat_news.php @@ -7,16 +7,18 @@ use think\migration\Migrator; */ class WechatNews extends Migrator { - private $name = 'wechat_news'; - public function change() { + // 当前操作 + $table = 'wechat_news'; + // 存在则跳过 - 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('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材编号'])