update: new version

This commit is contained in:
tokumeikoi 2022-12-15 13:48:31 +08:00
parent 28677f45be
commit d646a3b27f
5 changed files with 8 additions and 5 deletions

View File

@ -237,5 +237,5 @@ return [
| The only modification by laravel config
|
*/
'version' => '1.7.0'
'version' => '1.7.1.1671082585916'
];

View File

@ -198,7 +198,7 @@ DROP TABLE IF EXISTS `v2_server_route`;
CREATE TABLE `v2_server_route` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`remarks` varchar(255) NOT NULL,
`match` varchar(255) NOT NULL,
`match` text NOT NULL,
`action` varchar(11) NOT NULL,
`action_value` varchar(255) DEFAULT NULL,
`created_at` int(11) NOT NULL,
@ -397,4 +397,4 @@ CREATE TABLE `v2_user` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- 2022-11-27 07:09:04
-- 2022-12-15 05:24:08

View File

@ -639,3 +639,6 @@ CREATE TABLE `v2_server_route` (
`updated_at` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
ALTER TABLE `v2_server_route`
CHANGE `match` `match` text COLLATE 'utf8mb4_general_ci' NOT NULL AFTER `remarks`;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long