buildadmin/database/migrations/20231229043002_version206.php
2023-12-31 10:33:05 +08:00

31 lines
768 B
PHP

<?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();
}
}
}