修改数据文件

This commit is contained in:
邹景立 2022-10-13 14:40:07 +08:00
parent 5900ae17d4
commit 7b7dda7827
8 changed files with 17 additions and 24 deletions

View File

@ -12,10 +12,10 @@ class SystemConfig extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置',
]); ])
$table->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '配置分类']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '配置分类'])
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名称']) ->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名称'])
->addColumn('value', 'string', ['limit' => 2048, 'default' => '', 'comment' => '配置内容']) ->addColumn('value', 'string', ['limit' => 2048, 'default' => '', 'comment' => '配置内容'])
->addIndex('type', ['name' => 'idx_system_config_type']) ->addIndex('type', ['name' => 'idx_system_config_type'])

View File

@ -12,10 +12,9 @@ class WechatAuto extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-回复',
]); ])
$table
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)'])
->addColumn('time', 'string', ['limit' => 50, 'default' => '', 'comment' => '延迟时间']) ->addColumn('time', 'string', ['limit' => 50, 'default' => '', 'comment' => '延迟时间'])
->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '消息编号']) ->addColumn('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '消息编号'])

View File

@ -12,10 +12,9 @@ class WechatFans extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-粉丝',
]); ])
$table
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号'])
->addColumn('unionid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'UNIONID']) ->addColumn('unionid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'UNIONID'])
->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID'])

View File

@ -12,10 +12,9 @@ class WechatFansTags extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-标签',
]); ])
$table
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号'])
->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '标签名称']) ->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '标签名称'])
->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID']) ->addColumn('openid', 'string', ['limit' => 100, 'default' => '', 'comment' => 'OPENID'])

View File

@ -12,10 +12,9 @@ class WechatKeys extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-规则',
]); ])
$table
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '类型(text,image,news)'])
->addColumn('keys', 'string', ['limit' => 100, 'default' => '', 'comment' => '关键字']) ->addColumn('keys', 'string', ['limit' => 100, 'default' => '', 'comment' => '关键字'])
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号'])

View File

@ -12,10 +12,9 @@ class WechatMedia extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-素材',
]); ])
$table
->addColumn('md5', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希']) ->addColumn('md5', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希'])
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '媒体类型']) ->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '媒体类型'])
->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号']) ->addColumn('appid', 'string', ['limit' => 50, 'default' => '', 'comment' => '公众号编号'])

View File

@ -12,10 +12,9 @@ class WechatNews extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-图文',
]); ])
$table
->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材编号']) ->addColumn('media_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '永久素材编号'])
->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接']) ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '本地文件链接'])
->addColumn('article_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '关联文章编号(用英文逗号做分割)']) ->addColumn('article_id', 'string', ['limit' => 100, 'default' => '', 'comment' => '关联文章编号(用英文逗号做分割)'])

View File

@ -12,10 +12,9 @@ class WechatNewsArticle extends Migrator
public function change() public function change()
{ {
// 创建数据表 // 创建数据表
$table = $this->table($this->name, [ $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '微信-文章',
]); ])
$table
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '素材标题']) ->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '素材标题'])
->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '素材链接']) ->addColumn('local_url', 'string', ['limit' => 500, 'default' => '', 'comment' => '素材链接'])
->addColumn('show_cover_pic', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '显示封面(0隐藏,1显示)']) ->addColumn('show_cover_pic', 'integer', ['limit' => 1, 'default' => 0, 'comment' => '显示封面(0隐藏,1显示)'])