mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
24 lines
653 B
PHP
24 lines
653 B
PHP
<?php
|
|
|
|
use think\migration\Migrator;
|
|
|
|
/**
|
|
* 系统通用数据
|
|
*/
|
|
class SystemData extends Migrator
|
|
{
|
|
private $name = 'system_data';
|
|
|
|
public function change()
|
|
{
|
|
// 创建数据表
|
|
$this->table($this->name, [
|
|
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-数据',
|
|
])
|
|
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名'])
|
|
->addColumn('value', 'text', ['limit' => 2048, 'default' => '', 'comment' => '配置值'])
|
|
->addIndex('type', ['name' => 'idx_system_data_name'])
|
|
->save();
|
|
}
|
|
}
|