修改数据库

This commit is contained in:
邹景立 2022-10-13 17:13:26 +08:00
parent 6a7c9a2a0b
commit 191fced9ec
4 changed files with 18 additions and 12 deletions

View File

@ -7,16 +7,18 @@ use think\migration\Migrator;
*/
class SystemOplog extends Migrator
{
private $name = 'system_oplog';
public function change()
{
// 当前操作
$table = 'system_oplog';
// 存在则跳过
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('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '当前操作节点'])

View File

@ -7,16 +7,17 @@ use think\migration\Migrator;
*/
class SystemQueue extends Migrator
{
private $name = 'system_queue';
public function change()
{
// 当前操作
$table = 'system_queue';
// 存在则跳过
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('code', 'string', ['limit' => 20, 'default' => '', 'comment' => '任务编号'])

View File

@ -15,6 +15,7 @@ class SystemUser extends Migrator
if ($this->hasTable($this->name)) {
return;
}
// 创建数据表
$table = $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-用户',

View File

@ -7,16 +7,18 @@ use think\migration\Migrator;
*/
class WechatAuto extends Migrator
{
private $name = 'wechat_auto';
public function change()
{
// 当前操作
$table = 'wechat_auto';
// 存在则跳过
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)'])