Skip to content

Commit

Permalink
fix(any): rename SuperAdministrator to superAdministrator
Browse files Browse the repository at this point in the history
  • Loading branch information
doyouhaobaby committed Jan 19, 2020
1 parent e9e6866 commit e8730eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/20181112023649_role.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private function struct(): void
private function seed(): void
{
$sql = <<<'EOT'
INSERT INTO `role`(`id`, `name`, `num`, `status`, `create_at`, `update_at`, `delete_at`, `create_account`, `update_account`) VALUES (1, '超级管理员', 'SuperAdministrator', 1, '2019-01-31 01:14:34', '2019-08-25 21:19:23', 0, 0, 0);
INSERT INTO `role`(`id`, `name`, `num`, `status`, `create_at`, `update_at`, `delete_at`, `create_account`, `update_account`) VALUES (1, '超级管理员', 'superAdministrator', 1, '2019-01-31 01:14:34', '2019-08-25 21:19:23', 0, 0, 0);
INSERT INTO `role`(`id`, `name`, `num`, `status`, `create_at`, `update_at`, `delete_at`, `create_account`, `update_account`) VALUES (2, '管理员', 'admin', 1, '2019-01-31 01:49:49', '2019-08-25 21:19:23', 0, 0, 0);
INSERT INTO `role`(`id`, `name`, `num`, `status`, `create_at`, `update_at`, `delete_at`, `create_account`, `update_account`) VALUES (3, '会员', 'vip', 1, '2019-01-31 01:49:56', '2019-08-25 21:19:23', 0, 0, 0);
EOT;
Expand Down

0 comments on commit e8730eb

Please sign in to comment.