修改数据库文件

This commit is contained in:
邹景立 2022-10-13 14:44:33 +08:00
parent 7b7dda7827
commit bffaeb75bb
17 changed files with 68 additions and 0 deletions

View File

@ -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' => '系统-权限',

View File

@ -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' => '系统-授权',

View File

@ -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' => '系统-字典',

View File

@ -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' => '系统-配置',

View File

@ -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' => '系统-数据',

View File

@ -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' => '系统-文件',

View File

@ -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' => '系统-菜单',

View File

@ -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' => '系统-日志',

View File

@ -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' => '系统-任务',

View File

@ -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' => '系统-用户',

View File

@ -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' => '微信-回复',

View File

@ -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' => '微信-粉丝',

View File

@ -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' => '微信-标签',

View File

@ -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' => '微信-规则',

View File

@ -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' => '微信-素材',

View File

@ -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' => '微信-图文',

View File

@ -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' => '微信-文章',