mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
修改数据库文件
This commit is contained in:
parent
7b7dda7827
commit
bffaeb75bb
@ -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' => '系统-权限',
|
||||
|
@ -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' => '系统-授权',
|
||||
|
@ -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' => '系统-字典',
|
||||
|
@ -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' => '系统-配置',
|
||||
|
@ -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' => '系统-数据',
|
||||
|
@ -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' => '系统-文件',
|
||||
|
@ -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' => '系统-菜单',
|
||||
|
@ -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' => '系统-日志',
|
||||
|
@ -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' => '系统-任务',
|
||||
|
@ -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' => '系统-用户',
|
||||
|
@ -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' => '微信-回复',
|
||||
|
@ -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' => '微信-粉丝',
|
||||
|
@ -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' => '微信-标签',
|
||||
|
@ -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' => '微信-规则',
|
||||
|
@ -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' => '微信-素材',
|
||||
|
@ -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' => '微信-图文',
|
||||
|
@ -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' => '微信-文章',
|
||||
|
Loading…
x
Reference in New Issue
Block a user