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' => '永久素材编号'])