增加数据文件

This commit is contained in:
邹景立 2022-10-13 12:01:15 +08:00
parent 03902c68b6
commit 4d820e1618
8 changed files with 234 additions and 28 deletions

View File

@ -1,34 +1,20 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
/**
* 系统用户数据
*/
class SystemUser extends Migrator
{
/**
* Change Method.
*
* Write your reversible migrations using this method.
*
* More information on writing migrations is available here:
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
*
* The following commands can be used in this method and Phinx will
* automatically reverse them when rolling back:
*
* createTable
* renameTable
* addColumn
* renameColumn
* addIndex
* addForeignKey
*
* Remember to call "create()" or "update()" and NOT "save()" when working
* with the Table class.
*/
protected $name = 'system_user1';
public function change()
{
$table = $this->table('system_user1', ['comment' => '系统-用户', 'collation' => 'utf8mb4_general_ci']);
// 创建数据表
$table = $this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-用户',
]);
$table
->addColumn('usertype', 'string', ['limit' => 20, 'default' => '', 'comment' => '用户类型'])
->addColumn('username', 'string', ['limit' => 50, 'default' => '', 'comment' => '用户账号'])
@ -38,18 +24,28 @@ class SystemUser extends Migrator
->addColumn('authorize', 'string', ['limit' => 255, 'default' => '', 'comment' => '权限授权'])
->addColumn('contact_qq', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系QQ'])
->addColumn('contact_mail', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系邮箱'])
->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comtent' => '联系手机'])
->addColumn('contact_phone', 'string', ['limit' => 20, 'default' => '', 'comment' => '联系手机'])
->addColumn('login_ip', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录地址'])
->addColumn('login_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '登录时间'])
->addColumn('login_num', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '登录次数'])
->addColumn('login_num', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '登录次数'])
->addColumn('describe', 'string', ['limit' => 255, 'default' => '', 'comment' => '备注说明'])
->addColumn('status', 'bigint', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('sort', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('is_deleted', 'bigint', ['limit' => 20, 'default' => 0, 'comment' => '删除(1删除,0未删)'])
->addColumn('status', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('is_deleted', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除(1删除,0未删)'])
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addIndex('status', ['name' => 'idx_system_user_status'])
->addIndex('username', ['name' => 'idx_system_user_username'])
->addIndex('is_deleted', ['name' => 'idx_system_user_deleted'])
->save();
// 初始化默认数据
$data = [
'id' => 10000,
'username' => 'admin',
'nickname' => '超级管理员',
'password' => '21232f297a57a5a743894a0e4a801fc3',
'headimg' => 'https://thinkadmin.top/static/img/icon.png',
];
$table->insert($data)->saveData();
}
}

View File

@ -0,0 +1,29 @@
<?php
use think\migration\Migrator;
/**
* 系统权限数据
*/
class SystemAuth extends Migrator
{
protected $name = 'system_auth';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-权限',
])
->addColumn('title', 'string', ['limit' => 80, 'default' => '', 'comment' => '权限名称'])
->addColumn('utype', 'string', ['limit' => 50, 'default' => '', 'comment' => '身份权限'])
->addColumn('desc', 'string', ['limit' => 500, 'default' => '', 'comment' => '备注说明'])
->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('status', 'biginteger', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addIndex('sort', ['name' => 'idx_system_auth_sort'])
->addIndex('title', ['name' => 'idx_system_auth_title'])
->addIndex('status', ['name' => 'idx_system_auth_status'])
->save();
}
}

View File

@ -0,0 +1,24 @@
<?php
use think\migration\Migrator;
/**
* 系统-授权
*/
class SystemAuthNode extends Migrator
{
protected $name = 'system_auth_node';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权',
])
->addColumn('auth', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '角色'])
->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点'])
->addIndex('auth', ['name' => 'idx_system_auth_node_title'])
->addIndex('auth', ['name' => 'idx_system_auth_node_status'])
->save();
}
}

View File

@ -0,0 +1,35 @@
<?php
use think\migration\Migrator;
/**
* 系统字典数据
*/
class SystemBase extends Migrator
{
protected $name = 'system_base';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-字典',
])
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '数据类型'])
->addColumn('code', 'string', ['limit' => 100, 'default' => '', 'comment' => '数据代码'])
->addColumn('name', 'string', ['limit' => 500, 'default' => '', 'comment' => '数据名称'])
->addColumn('content', 'text', ['limit' => 500, 'default' => '', 'comment' => '数据内容'])
->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('deleted', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '删除(0正常,1已删)'])
->addColumn('deleted_at', 'string', ['limit' => 20, 'default' => '', 'comment' => '删除时间'])
->addColumn('deleted_by', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '删除用户'])
->addIndex('type', ['name' => 'idx_system_base_type'])
->addIndex('code', ['name' => 'idx_system_base_code'])
->addIndex('name', ['name' => 'idx_system_base_name'])
->addIndex('sort', ['name' => 'idx_system_base_sort'])
->addIndex('status', ['name' => 'idx_system_base_status'])
->addIndex('deleted', ['name' => 'idx_system_base_deleted'])
->save();
}
}

View File

@ -0,0 +1,25 @@
<?php
use think\migration\Migrator;
/**
* 系统配置数据
*/
class SystemConfig extends Migrator
{
protected $name = 'system_config';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-配置',
])
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '配置分类'])
->addColumn('name', 'string', ['limit' => 100, 'default' => '', 'comment' => '配置名称'])
->addColumn('value', 'string', ['limit' => 2048, 'default' => '', 'comment' => '配置内容'])
->addIndex('type', ['name' => 'idx_system_config_type'])
->addIndex('name', ['name' => 'idx_system_config_name'])
->save();
}
}

View File

@ -0,0 +1,23 @@
<?php
use think\migration\Migrator;
/**
* 系统通用数据
*/
class SystemData extends Migrator
{
protected $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();
}
}

View File

@ -0,0 +1,41 @@
<?php
use think\migration\Migrator;
/**
* 系统文件数据
*/
class SystemFile extends Migrator
{
protected $name = 'system_file';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-文件',
])
->addColumn('type', 'string', ['limit' => 20, 'default' => '', 'comment' => '上传类型'])
->addColumn('hash', 'string', ['limit' => 32, 'default' => '', 'comment' => '文件哈希'])
->addColumn('name', 'string', ['limit' => 200, 'default' => '', 'comment' => '文件名称'])
->addColumn('xext', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件后缀'])
->addColumn('xurl', 'string', ['limit' => 500, 'default' => '', 'comment' => '访问链接'])
->addColumn('xkey', 'string', ['limit' => 500, 'default' => '', 'comment' => '文件路径'])
->addColumn('mime', 'string', ['limit' => 100, 'default' => '', 'comment' => '文件类型'])
->addColumn('size', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '文件大小'])
->addColumn('uuid', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '用户编号'])
->addColumn('isfast', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '是否秒传'])
->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('create_at', 'datetime', ['limit' => 20, 'default' => '', 'comment' => '创建时间'])
->addColumn('update_at', 'datetime', ['limit' => 20, 'default' => 0, 'comment' => '更新时间'])
->addIndex('type', ['name' => 'idx_system_file_type'])
->addIndex('hash', ['name' => 'idx_system_file_hash'])
->addIndex('uuid', ['name' => 'idx_system_file_uuid'])
->addIndex('xext', ['name' => 'idx_system_file_xext'])
->addIndex('status', ['name' => 'idx_system_file_status'])
->addIndex('issafe', ['name' => 'idx_system_file_issafe'])
->addIndex('isfast', ['name' => 'idx_system_file_isfast'])
->save();
}
}

View File

@ -0,0 +1,33 @@
<?php
use think\migration\Migrator;
/**
* 系统菜单数据
*/
class SystemMenu extends Migrator
{
protected $name = 'system_menu';
public function change()
{
// 创建数据表
$this->table($this->name, [
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-菜单',
])
->addColumn('pid', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '上级编号'])
->addColumn('title', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单名称'])
->addColumn('icon', 'string', ['limit' => 100, 'default' => '', 'comment' => '菜单图标'])
->addColumn('node', 'string', ['limit' => 100, 'default' => '', 'comment' => '节点代码'])
->addColumn('url', 'string', ['limit' => 500, 'default' => '', 'comment' => '链接节点'])
->addColumn('params', 'string', ['limit' => 500, 'default' => '', 'comment' => '链接参数'])
->addColumn('target', 'string', ['limit' => 20, 'default' => '_self', 'comment' => '打开方式'])
->addColumn('sort', 'biginteger', ['limit' => 20, 'default' => 0, 'comment' => '排序权重'])
->addColumn('status', 'integer', ['limit' => 20, 'default' => 1, 'comment' => '状态(0禁用,1启用)'])
->addColumn('create_at', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addIndex('pid', ['name' => 'idx_system_menu_pid'])
->addIndex('sort', ['name' => 'idx_system_menu_sort'])
->addIndex('status', ['name' => 'idx_system_menu_status'])
->save();
}
}