mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 优化数据库迁移
This commit is contained in:
parent
f93ce20eb0
commit
75a4a37bfc
@ -703,6 +703,6 @@ class IniAdminMenu extends Migrator {
|
||||
]
|
||||
];
|
||||
|
||||
$this->table('admin_menu')->insert($data)->save();
|
||||
$this->table('admin_menu')->insert($data)->saveData();
|
||||
}
|
||||
}
|
||||
|
@ -30,10 +30,10 @@ class AddAdminListField extends Migrator {
|
||||
'limit' => MysqlAdapter::INT_TINY,
|
||||
'default' => 2,
|
||||
'comment' => '是否采用hash映射, 1:普通模式 2:加密模式'
|
||||
])->save();
|
||||
])->update();
|
||||
}
|
||||
|
||||
public function down() {
|
||||
$this->table('admin_list')->removeColumn('hash_type')->save();
|
||||
$this->table('admin_list')->removeColumn('hash_type')->update();
|
||||
}
|
||||
}
|
||||
|
@ -25,11 +25,11 @@ class ChangeAdminMenuField extends Migrator {
|
||||
* with the Table class.
|
||||
*/
|
||||
public function up() {
|
||||
$this->table('admin_menu')->renameColumn('name', 'title')->save();
|
||||
$this->table('admin_menu')->renameColumn('name', 'title')->update();
|
||||
}
|
||||
|
||||
public function down() {
|
||||
$this->table('admin_menu')->renameColumn('title', 'name')->save();
|
||||
$this->table('admin_menu')->renameColumn('title', 'name')->update();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user