buildadmin/database/migrations/20231229043002_version206.php

37 lines
1.1 KiB
PHP
Raw Normal View History

2023-12-31 02:33:05 +00:00
<?php
use think\facade\Db;
use think\migration\Migrator;
class Version206 extends Migrator
{
/**
* @throws Throwable
*/
public function up(): void
{
$exist = Db::name('config')->where('name', 'backend_entrance')->value('id');
if (!$exist) {
$rows = [
[
'name' => 'backend_entrance',
'group' => 'basics',
'title' => 'Backend entrance',
'type' => 'string',
'value' => '/admin',
'rule' => 'required',
'weigh' => 1,
],
];
$table = $this->table('config');
$table->insert($rows)->saveData();
}
$crudLog = $this->table('crud_log');
if (!$crudLog->hasColumn('connection')) {
$crudLog->addColumn('connection', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据库连接配置标识', 'null' => false, 'after' => 'status']);
$crudLog->save();
}
2023-12-31 02:33:05 +00:00
}
}