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