github.com/kotovmak/go-admin@v1.1.1/tests/data/admin_ms.sql (about) 1 /* 2 Navicat Premium Data Transfer 3 4 Source Server : mssql 5 Source Server Type : SQL Server 6 Source Server Version : 14003281 7 Source Host : localhost 8 Source Database : goadmin 9 Source Schema : dbo 10 11 Target Server Type : SQL Server 12 Target Server Version : 14003281 13 File Encoding : utf-8 14 15 Date: 04/08/2020 01:11:22 AM 16 */ 17 18 -- ---------------------------- 19 -- Table structure for goadmin_menu 20 -- ---------------------------- 21 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_menu]') AND type IN ('U')) 22 DROP TABLE [dbo].[goadmin_menu] 23 GO 24 CREATE TABLE [dbo].[goadmin_menu] ( 25 [id] int IDENTITY(1,1) NOT NULL, 26 [parent_id] int NOT NULL DEFAULT ((0)), 27 [type] tinyint NOT NULL DEFAULT ((0)), 28 [order] int NOT NULL DEFAULT ('0'), 29 [title] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 30 [icon] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 31 [uri] varchar(3000) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL DEFAULT '', 32 [header] varchar(150) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT NULL, 33 [uuid] varchar(150) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT NULL, 34 [plugin_name] varchar(150) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL DEFAULT '', 35 [created_at] datetime NULL DEFAULT (getdate()), 36 [updated_at] datetime NULL DEFAULT (getdate()) 37 ) 38 ON [PRIMARY] 39 GO 40 41 -- ---------------------------- 42 -- Records of goadmin_menu 43 -- ---------------------------- 44 BEGIN TRANSACTION 45 GO 46 SET IDENTITY_INSERT [dbo].[goadmin_menu] ON 47 GO 48 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('1', '0', '1', '2', 'Admin', 'fa-tasks', '', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 49 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('2', '1', '1', '2', 'Users', 'fa-users', '/info/manager', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 50 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('3', '0', '1', '3', 'test2 menu', 'fa-angellist', '/example/test', '', '2019-09-10 00:00:00.000', '2020-03-15 12:24:47.000'); 51 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('4', '1', '1', '4', 'Permission', 'fa-ban', '/info/permission', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 52 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('5', '1', '1', '5', 'Menu', 'fa-bars', '/menu', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 53 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('6', '1', '1', '6', 'Operation log', 'fa-history', '/info/op', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 54 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('7', '0', '1', '1', 'Dashboard', 'fa-bar-chart', '/', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 55 INSERT INTO [dbo].[goadmin_menu] ([id], [parent_id], [type], [order], [title], [icon], [uri], [header], [created_at], [updated_at]) VALUES ('8', '0', '1', '7', 'User', 'fa-users', '/info/user', '', '2020-03-15 03:09:14.810', '2020-03-15 03:09:14.810'); 56 GO 57 SET IDENTITY_INSERT [dbo].[goadmin_menu] OFF 58 GO 59 COMMIT 60 GO 61 62 -- ---------------------------- 63 -- Table structure for goadmin_operation_log 64 -- ---------------------------- 65 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_operation_log]') AND type IN ('U')) 66 DROP TABLE [dbo].[goadmin_operation_log] 67 GO 68 CREATE TABLE [dbo].[goadmin_operation_log] ( 69 [id] int IDENTITY(1,1) NOT NULL, 70 [user_id] int NOT NULL, 71 [path] varchar(255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 72 [method] varchar(10) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 73 [ip] varchar(15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 74 [input] text COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 75 [created_at] datetime NULL DEFAULT (getdate()), 76 [updated_at] datetime NULL DEFAULT (getdate()) 77 ) 78 ON [PRIMARY] 79 TEXTIMAGE_ON [PRIMARY] 80 GO 81 82 -- ---------------------------- 83 -- Records of goadmin_operation_log 84 -- ---------------------------- 85 BEGIN TRANSACTION 86 GO 87 SET IDENTITY_INSERT [dbo].[goadmin_operation_log] ON 88 GO 89 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('1', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:09:12.760', '2020-03-15 03:09:12.760'); 90 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('2', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.177', '2020-03-15 03:09:13.177'); 91 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('3', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.210', '2020-03-15 03:09:13.210'); 92 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('4', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["5f810995-beca-4c0f-8802-b327bef75743"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:09:13.253', '2020-03-15 03:09:13.253'); 93 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('5', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.283', '2020-03-15 03:09:13.283'); 94 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('6', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.317', '2020-03-15 03:09:13.317'); 95 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('7', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["11114d9c-3bf2-4670-8638-09ee291d0233"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:09:13.363', '2020-03-15 03:09:13.363'); 96 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('8', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.400', '2020-03-15 03:09:13.400'); 97 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('9', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["9ae81396-6250-4e53-85f6-a459471f1bbf"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:09:13.450', '2020-03-15 03:09:13.450'); 98 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('10', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:09:13.487', '2020-03-15 03:09:13.487'); 99 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('11', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.547', '2020-03-15 03:09:13.547'); 100 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('12', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.590', '2020-03-15 03:09:13.590'); 101 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('13', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["c3061c30-e384-4938-b5f7-6f07a11d04ac"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:09:13.660', '2020-03-15 03:09:13.660'); 102 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('14', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.690', '2020-03-15 03:09:13.690'); 103 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('15', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.733', '2020-03-15 03:09:13.733'); 104 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('16', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1e69d7a2-6e01-42f6-95a2-a5fba51e29a8"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:09:13.800', '2020-03-15 03:09:13.800'); 105 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('17', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:13.833', '2020-03-15 03:09:13.833'); 106 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('18', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["79d55f58-03f2-4ad3-940d-b88174d3783e"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:09:13.893', '2020-03-15 03:09:13.893'); 107 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('19', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:09:13.937', '2020-03-15 03:09:13.937'); 108 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('20', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.010', '2020-03-15 03:09:14.010'); 109 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('21', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:09:14.040', '2020-03-15 03:09:14.040'); 110 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('22', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.070', '2020-03-15 03:09:14.070'); 111 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('23', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.130', '2020-03-15 03:09:14.130'); 112 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('24', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["44274eaa-9b15-43f1-9573-ec5c322f8e5f"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:09:14.280', '2020-03-15 03:09:14.280'); 113 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('25', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.317', '2020-03-15 03:09:14.317'); 114 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('26', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["71687e2d-cad3-48b5-be5a-d90b65a2891a"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:09:14.487', '2020-03-15 03:09:14.487'); 115 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('27', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.780', '2020-03-15 03:09:14.780'); 116 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('28', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["e1c920bc-9131-4486-87c6-a332120c9efe"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:09:14.863', '2020-03-15 03:09:14.863'); 117 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('29', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.910', '2020-03-15 03:09:14.910'); 118 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('30', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:09:14.967', '2020-03-15 03:09:14.967'); 119 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('31', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["d7eebcbe-a6c3-45ea-a5d0-d3af5bebe37f"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:09:15.047', '2020-03-15 03:09:15.047'); 120 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('32', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["d7eebcbe-a6c3-45ea-a5d0-d3af5bebe37f"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:09:15.103', '2020-03-15 03:09:15.103'); 121 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('33', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:09:15.137', '2020-03-15 03:09:15.137'); 122 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('34', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.217', '2020-03-15 03:09:15.217'); 123 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('35', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.247', '2020-03-15 03:09:15.247'); 124 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('36', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.280', '2020-03-15 03:09:15.280'); 125 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('37', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.320', '2020-03-15 03:09:15.320'); 126 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('38', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.353', '2020-03-15 03:09:15.353'); 127 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('39', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.400', '2020-03-15 03:09:15.400'); 128 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('40', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:09:15.443', '2020-03-15 03:09:15.443'); 129 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('41', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.483', '2020-03-15 03:09:15.483'); 130 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('42', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.520', '2020-03-15 03:09:15.520'); 131 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('43', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:09:15.550', '2020-03-15 03:09:15.550'); 132 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('44', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:14:36.897', '2020-03-15 03:14:36.897'); 133 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('45', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.297', '2020-03-15 03:14:37.297'); 134 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('46', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.330', '2020-03-15 03:14:37.330'); 135 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('47', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["d66311db-d66a-403b-9154-60710429a1cb"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:14:37.363', '2020-03-15 03:14:37.363'); 136 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('48', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.400', '2020-03-15 03:14:37.400'); 137 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('49', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.430', '2020-03-15 03:14:37.430'); 138 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('50', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["a95d2d24-fb3e-4020-b1a2-e7e50a94ff19"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:14:37.483', '2020-03-15 03:14:37.483'); 139 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('51', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.517', '2020-03-15 03:14:37.517'); 140 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('52', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["5c3ebaad-2459-43d5-9536-bb8b69d5ded1"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:14:37.563', '2020-03-15 03:14:37.563'); 141 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('53', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:14:37.593', '2020-03-15 03:14:37.593'); 142 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('54', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.640', '2020-03-15 03:14:37.640'); 143 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('55', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.700', '2020-03-15 03:14:37.700'); 144 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('56', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["c8c64eb9-e8c7-4f38-be00-7c817e3ed14e"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:14:37.760', '2020-03-15 03:14:37.760'); 145 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('57', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.790', '2020-03-15 03:14:37.790'); 146 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('58', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.830', '2020-03-15 03:14:37.830'); 147 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('59', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["3ffbad00-9670-4262-b637-f88026b52bfc"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:14:37.873', '2020-03-15 03:14:37.873'); 148 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('60', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:37.913', '2020-03-15 03:14:37.913'); 149 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('61', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["3ba7d233-1bc2-4257-95a6-544eedf18981"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:14:37.940', '2020-03-15 03:14:37.940'); 150 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('62', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:14:37.980', '2020-03-15 03:14:37.980'); 151 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('63', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.030', '2020-03-15 03:14:38.030'); 152 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('64', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:14:38.063', '2020-03-15 03:14:38.063'); 153 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('65', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.097', '2020-03-15 03:14:38.097'); 154 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('66', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.150', '2020-03-15 03:14:38.150'); 155 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('67', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["8c0004a3-e902-46ad-a80a-ccb01a5b90c7"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:14:38.283', '2020-03-15 03:14:38.283'); 156 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('68', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.327', '2020-03-15 03:14:38.327'); 157 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('69', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["3c7ae974-1e74-48fd-a70d-6f3a502d4767"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:14:38.460', '2020-03-15 03:14:38.460'); 158 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('70', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.730', '2020-03-15 03:14:38.730'); 159 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('71', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["c8b82f1c-45c3-4a9e-b92d-e9055133af08"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:14:38.803', '2020-03-15 03:14:38.803'); 160 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('72', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.853', '2020-03-15 03:14:38.853'); 161 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('73', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:14:38.910', '2020-03-15 03:14:38.910'); 162 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('74', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["3d6ae122-32dc-40d5-9930-84aff50aa97f"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:14:38.990', '2020-03-15 03:14:38.990'); 163 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('75', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["3d6ae122-32dc-40d5-9930-84aff50aa97f"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:14:39.043', '2020-03-15 03:14:39.043'); 164 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('76', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:14:39.083', '2020-03-15 03:14:39.083'); 165 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('77', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.133', '2020-03-15 03:14:39.133'); 166 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('78', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.163', '2020-03-15 03:14:39.163'); 167 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('79', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.193', '2020-03-15 03:14:39.193'); 168 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('80', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.233', '2020-03-15 03:14:39.233'); 169 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('81', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.280', '2020-03-15 03:14:39.280'); 170 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('82', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.310', '2020-03-15 03:14:39.310'); 171 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('83', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:14:39.360', '2020-03-15 03:14:39.360'); 172 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('84', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.403', '2020-03-15 03:14:39.403'); 173 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('85', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.443', '2020-03-15 03:14:39.443'); 174 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('86', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:14:39.487', '2020-03-15 03:14:39.487'); 175 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('87', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.340', '2020-03-15 03:39:21.340'); 176 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('88', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.750', '2020-03-15 03:39:21.750'); 177 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('89', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.787', '2020-03-15 03:39:21.787'); 178 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('90', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["8bee7649-6223-4fe6-a505-ea375cd0b49c"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:39:21.820', '2020-03-15 03:39:21.820'); 179 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('91', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.850', '2020-03-15 03:39:21.850'); 180 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('92', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.887', '2020-03-15 03:39:21.887'); 181 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('93', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["087d600a-86a5-4fe2-9ff3-fd4e6b0176c4"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:39:21.947', '2020-03-15 03:39:21.947'); 182 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('94', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:21.987', '2020-03-15 03:39:21.987'); 183 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('95', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["8c2c3b2a-108e-42c7-8de8-55dd101d44e3"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:39:22.020', '2020-03-15 03:39:22.020'); 184 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('96', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:39:22.053', '2020-03-15 03:39:22.053'); 185 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('97', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.100', '2020-03-15 03:39:22.100'); 186 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('98', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.130', '2020-03-15 03:39:22.130'); 187 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('99', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["2485611e-bd7e-4ae2-acc9-4ce72a601c44"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:39:22.167', '2020-03-15 03:39:22.167'); 188 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('100', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.207', '2020-03-15 03:39:22.207'); 189 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('101', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.473', '2020-03-15 03:39:22.473'); 190 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('102', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["42723e0f-6198-4a96-b13b-83e8406b9ba7"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:39:22.537', '2020-03-15 03:39:22.537'); 191 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('103', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.577', '2020-03-15 03:39:22.577'); 192 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('104', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1687c542-94e9-45b3-b362-16aeb6d92169"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:39:22.617', '2020-03-15 03:39:22.617'); 193 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('105', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:39:22.647', '2020-03-15 03:39:22.647'); 194 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('106', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.690', '2020-03-15 03:39:22.690'); 195 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('107', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:39:22.713', '2020-03-15 03:39:22.713'); 196 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('108', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.740', '2020-03-15 03:39:22.740'); 197 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('109', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.780', '2020-03-15 03:39:22.780'); 198 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('110', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["f37d07a2-cff6-42dc-8004-8bd174da141d"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:39:22.927', '2020-03-15 03:39:22.927'); 199 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('111', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:22.970', '2020-03-15 03:39:22.970'); 200 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('112', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["04a35b51-52e5-4dfb-8a9f-fa2211709d3e"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:39:23.093', '2020-03-15 03:39:23.093'); 201 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('113', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.387', '2020-03-15 03:39:23.387'); 202 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('114', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["ab730b2e-7c8b-4c55-b0bb-f5ba0cae4e5b"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:39:23.457', '2020-03-15 03:39:23.457'); 203 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('115', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.517', '2020-03-15 03:39:23.517'); 204 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('116', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.573', '2020-03-15 03:39:23.573'); 205 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('117', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["402e0b89-7179-472f-af66-424e02f090b5"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:39:23.663', '2020-03-15 03:39:23.663'); 206 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('118', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["402e0b89-7179-472f-af66-424e02f090b5"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:39:23.723', '2020-03-15 03:39:23.723'); 207 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('119', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:39:23.757', '2020-03-15 03:39:23.757'); 208 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('120', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.813', '2020-03-15 03:39:23.813'); 209 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('121', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.847', '2020-03-15 03:39:23.847'); 210 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('122', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.877', '2020-03-15 03:39:23.877'); 211 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('123', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.910', '2020-03-15 03:39:23.910'); 212 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('124', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.947', '2020-03-15 03:39:23.947'); 213 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('125', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:39:23.970', '2020-03-15 03:39:23.970'); 214 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('126', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:39:24.010', '2020-03-15 03:39:24.010'); 215 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('127', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:24.050', '2020-03-15 03:39:24.050'); 216 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('128', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:39:24.093', '2020-03-15 03:39:24.093'); 217 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('129', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:39:24.137', '2020-03-15 03:39:24.137'); 218 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('130', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:49:24.813', '2020-03-15 03:49:24.813'); 219 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('131', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.190', '2020-03-15 03:49:25.190'); 220 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('132', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.233', '2020-03-15 03:49:25.233'); 221 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('133', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["c3a60aba-926d-424a-8cbd-a999668753fe"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:49:25.277', '2020-03-15 03:49:25.277'); 222 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('134', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.310', '2020-03-15 03:49:25.310'); 223 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('135', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.357', '2020-03-15 03:49:25.357'); 224 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('136', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["68d8bb95-b37a-4f35-ba19-efea7b75a2f2"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:49:25.410', '2020-03-15 03:49:25.410'); 225 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('137', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.443', '2020-03-15 03:49:25.443'); 226 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('138', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["ff95fcec-ad5a-4604-ba83-b51cb9b18a89"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:49:25.480', '2020-03-15 03:49:25.480'); 227 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('139', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:49:25.507', '2020-03-15 03:49:25.507'); 228 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('140', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.527', '2020-03-15 03:49:25.527'); 229 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('141', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.573', '2020-03-15 03:49:25.573'); 230 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('142', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["fc0ec315-3254-4145-bd90-fa54dc115d6f"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:49:25.613', '2020-03-15 03:49:25.613'); 231 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('143', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.643', '2020-03-15 03:49:25.643'); 232 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('144', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.680', '2020-03-15 03:49:25.680'); 233 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('145', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["d539d703-d4eb-4551-83b3-4b41049e884c"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:49:25.723', '2020-03-15 03:49:25.723'); 234 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('146', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.763', '2020-03-15 03:49:25.763'); 235 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('147', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["a62ae5e8-66c8-44c2-9bc4-be92c75f255d"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:49:25.800', '2020-03-15 03:49:25.800'); 236 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('148', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:49:25.830', '2020-03-15 03:49:25.830'); 237 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('149', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.860', '2020-03-15 03:49:25.860'); 238 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('150', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:49:25.903', '2020-03-15 03:49:25.903'); 239 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('151', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.937', '2020-03-15 03:49:25.937'); 240 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('152', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:25.983', '2020-03-15 03:49:25.983'); 241 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('153', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["a8b6b05c-f420-4c33-852f-d673599b47a4"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:49:26.143', '2020-03-15 03:49:26.143'); 242 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('154', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.190', '2020-03-15 03:49:26.190'); 243 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('155', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["b8a8e809-9672-462e-937a-3fd9a516a35b"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:49:26.293', '2020-03-15 03:49:26.293'); 244 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('156', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.600', '2020-03-15 03:49:26.600'); 245 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('157', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["8441b1f4-d6de-4c34-a65c-6bb9969e2974"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:49:26.673', '2020-03-15 03:49:26.673'); 246 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('158', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.727', '2020-03-15 03:49:26.727'); 247 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('159', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.773', '2020-03-15 03:49:26.773'); 248 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('160', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["a981fd88-2911-4b32-ab74-990842814dac"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:49:26.847', '2020-03-15 03:49:26.847'); 249 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('161', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["a981fd88-2911-4b32-ab74-990842814dac"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:49:26.893', '2020-03-15 03:49:26.893'); 250 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('162', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:49:26.927', '2020-03-15 03:49:26.927'); 251 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('163', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.957', '2020-03-15 03:49:26.957'); 252 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('164', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:49:26.997', '2020-03-15 03:49:26.997'); 253 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('165', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.027', '2020-03-15 03:49:27.027'); 254 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('166', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.063', '2020-03-15 03:49:27.063'); 255 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('167', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.103', '2020-03-15 03:49:27.103'); 256 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('168', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.133', '2020-03-15 03:49:27.133'); 257 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('169', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:49:27.177', '2020-03-15 03:49:27.177'); 258 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('170', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.220', '2020-03-15 03:49:27.220'); 259 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('171', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.260', '2020-03-15 03:49:27.260'); 260 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('172', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:49:27.293', '2020-03-15 03:49:27.293'); 261 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('173', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.027', '2020-03-15 03:55:28.027'); 262 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('174', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.430', '2020-03-15 03:55:28.430'); 263 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('175', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.477', '2020-03-15 03:55:28.477'); 264 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('176', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["418ee4ee-3a05-49a2-b666-830c719fd776"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:55:28.513', '2020-03-15 03:55:28.513'); 265 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('177', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.550', '2020-03-15 03:55:28.550'); 266 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('178', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.580', '2020-03-15 03:55:28.580'); 267 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('179', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["515bd79c-e610-4f1e-a600-b46ff6d902af"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:55:28.637', '2020-03-15 03:55:28.637'); 268 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('180', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.677', '2020-03-15 03:55:28.677'); 269 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('181', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["9738e849-c22c-4c38-a1b8-1d7d1741efe2"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:55:28.713', '2020-03-15 03:55:28.713'); 270 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('182', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:55:28.743', '2020-03-15 03:55:28.743'); 271 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('183', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.763', '2020-03-15 03:55:28.763'); 272 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('184', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.813', '2020-03-15 03:55:28.813'); 273 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('185', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["e6a37010-b56a-4f8f-9d88-396059440744"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:55:28.857', '2020-03-15 03:55:28.857'); 274 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('186', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.890', '2020-03-15 03:55:28.890'); 275 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('187', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:28.947', '2020-03-15 03:55:28.947'); 276 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('188', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["6560686e-ac53-499b-8a8c-9813787446f5"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:55:28.993', '2020-03-15 03:55:28.993'); 277 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('189', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.037', '2020-03-15 03:55:29.037'); 278 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('190', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1844756f-0a44-4fbf-8019-cd3f97a6db70"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:55:29.080', '2020-03-15 03:55:29.080'); 279 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('191', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:55:29.117', '2020-03-15 03:55:29.117'); 280 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('192', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.147', '2020-03-15 03:55:29.147'); 281 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('193', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:55:29.190', '2020-03-15 03:55:29.190'); 282 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('194', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.227', '2020-03-15 03:55:29.227'); 283 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('195', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.290', '2020-03-15 03:55:29.290'); 284 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('196', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["4e465c13-ee6f-4b95-9187-f46a231caae9"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:55:29.463', '2020-03-15 03:55:29.463'); 285 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('197', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.517', '2020-03-15 03:55:29.517'); 286 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('198', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["b0b0d014-f418-4281-82fd-da8e5be8f43d"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:55:29.623', '2020-03-15 03:55:29.623'); 287 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('199', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:55:29.943', '2020-03-15 03:55:29.943'); 288 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('200', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["63980a38-e643-46b1-aefa-e49da95de6e0"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:55:30.057', '2020-03-15 03:55:30.057'); 289 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('201', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.580', '2020-03-15 03:55:31.580'); 290 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('202', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.623', '2020-03-15 03:55:31.623'); 291 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('203', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["e95cab98-2517-44ed-b59c-4b65b8d2837d"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:55:31.730', '2020-03-15 03:55:31.730'); 292 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('204', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["e95cab98-2517-44ed-b59c-4b65b8d2837d"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:55:31.770', '2020-03-15 03:55:31.770'); 293 GO 294 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('205', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:55:31.807', '2020-03-15 03:55:31.807'); 295 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('206', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.830', '2020-03-15 03:55:31.830'); 296 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('207', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.880', '2020-03-15 03:55:31.880'); 297 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('208', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.913', '2020-03-15 03:55:31.913'); 298 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('209', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.947', '2020-03-15 03:55:31.947'); 299 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('210', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:31.980', '2020-03-15 03:55:31.980'); 300 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('211', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:55:32.010', '2020-03-15 03:55:32.010'); 301 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('212', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:55:32.053', '2020-03-15 03:55:32.053'); 302 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('213', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:32.097', '2020-03-15 03:55:32.097'); 303 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('214', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:55:32.143', '2020-03-15 03:55:32.143'); 304 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('215', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:55:32.180', '2020-03-15 03:55:32.180'); 305 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('216', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.097', '2020-03-15 03:57:01.097'); 306 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('217', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.477', '2020-03-15 03:57:01.477'); 307 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('218', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.530', '2020-03-15 03:57:01.530'); 308 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('219', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["51757bf6-b3c4-46f4-bf9f-6e91f347dc2d"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:57:01.563', '2020-03-15 03:57:01.563'); 309 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('220', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.593', '2020-03-15 03:57:01.593'); 310 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('221', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.640', '2020-03-15 03:57:01.640'); 311 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('222', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["9762d55b-c444-405e-b0b6-5feb851c0e40"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 03:57:01.690', '2020-03-15 03:57:01.690'); 312 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('223', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.730', '2020-03-15 03:57:01.730'); 313 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('224', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["64218a2f-eb41-4ca3-99d9-c925d9d11700"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 03:57:01.763', '2020-03-15 03:57:01.763'); 314 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('225', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 03:57:01.787', '2020-03-15 03:57:01.787'); 315 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('226', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.810', '2020-03-15 03:57:01.810'); 316 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('227', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.847', '2020-03-15 03:57:01.847'); 317 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('228', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["cfa68542-545d-4cd4-bc1c-fef5a4005b0d"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 03:57:01.880', '2020-03-15 03:57:01.880'); 318 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('229', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.907', '2020-03-15 03:57:01.907'); 319 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('230', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:01.950', '2020-03-15 03:57:01.950'); 320 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('231', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["7ef4b394-e721-4012-a24a-9296233d0053"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 03:57:01.987', '2020-03-15 03:57:01.987'); 321 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('232', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.030', '2020-03-15 03:57:02.030'); 322 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('233', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["6a6318cd-89be-4a37-8e59-fb63a30c0d03"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 03:57:02.067', '2020-03-15 03:57:02.067'); 323 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('234', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 03:57:02.107', '2020-03-15 03:57:02.107'); 324 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('235', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.130', '2020-03-15 03:57:02.130'); 325 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('236', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:57:02.173', '2020-03-15 03:57:02.173'); 326 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('237', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.207', '2020-03-15 03:57:02.207'); 327 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('238', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.253', '2020-03-15 03:57:02.253'); 328 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('239', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["aa9b074b-c297-4aff-9a66-179b5020078c"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 03:57:02.407', '2020-03-15 03:57:02.407'); 329 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('240', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.453', '2020-03-15 03:57:02.453'); 330 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('241', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["062dc246-ad4b-44b8-899f-dfc3815eefd3"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 03:57:02.553', '2020-03-15 03:57:02.553'); 331 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('242', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.850', '2020-03-15 03:57:02.850'); 332 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('243', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["168e4192-270a-4ac4-947d-1a7d73785474"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 03:57:02.923', '2020-03-15 03:57:02.923'); 333 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('244', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:57:02.973', '2020-03-15 03:57:02.973'); 334 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('245', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.027', '2020-03-15 03:57:03.027'); 335 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('246', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["6697607f-8220-41c5-a5da-ba1c6a432195"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 03:57:03.093', '2020-03-15 03:57:03.093'); 336 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('247', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["6697607f-8220-41c5-a5da-ba1c6a432195"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 03:57:03.143', '2020-03-15 03:57:03.143'); 337 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('248', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 03:57:03.170', '2020-03-15 03:57:03.170'); 338 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('249', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.200', '2020-03-15 03:57:03.200'); 339 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('250', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.237', '2020-03-15 03:57:03.237'); 340 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('251', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.267', '2020-03-15 03:57:03.267'); 341 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('252', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.300', '2020-03-15 03:57:03.300'); 342 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('253', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.330', '2020-03-15 03:57:03.330'); 343 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('254', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.350', '2020-03-15 03:57:03.350'); 344 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('255', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 03:57:03.380', '2020-03-15 03:57:03.380'); 345 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('256', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.413', '2020-03-15 03:57:03.413'); 346 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('257', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.447', '2020-03-15 03:57:03.447'); 347 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('258', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 03:57:03.480', '2020-03-15 03:57:03.480'); 348 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('259', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 04:08:41.627', '2020-03-15 04:08:41.627'); 349 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('260', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 04:08:41.993', '2020-03-15 04:08:41.993'); 350 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('261', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.047', '2020-03-15 04:08:42.047'); 351 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('262', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["95001d14-ab8f-4d1e-a16e-78e85ce1830e"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:08:42.083', '2020-03-15 04:08:42.083'); 352 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('263', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.120', '2020-03-15 04:08:42.120'); 353 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('264', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.160', '2020-03-15 04:08:42.160'); 354 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('265', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["c247b48f-fd2b-412f-adb0-c7ca03a96331"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:08:42.210', '2020-03-15 04:08:42.210'); 355 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('266', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.250', '2020-03-15 04:08:42.250'); 356 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('267', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["25f2de82-68e1-4810-830f-a8cf0eb8f5a0"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 04:08:42.290', '2020-03-15 04:08:42.290'); 357 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('268', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 04:08:42.320', '2020-03-15 04:08:42.320'); 358 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('269', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.340', '2020-03-15 04:08:42.340'); 359 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('270', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.393', '2020-03-15 04:08:42.393'); 360 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('271', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["064639b2-d4eb-4c7e-9082-35580a9b65e2"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 04:08:42.433', '2020-03-15 04:08:42.433'); 361 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('272', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.463', '2020-03-15 04:08:42.463'); 362 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('273', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.503', '2020-03-15 04:08:42.503'); 363 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('274', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["27b2084a-c9fd-4b76-b178-f298d1f42be6"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 04:08:42.547', '2020-03-15 04:08:42.547'); 364 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('275', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.593', '2020-03-15 04:08:42.593'); 365 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('276', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["6f88027a-3bba-4e1d-8b03-bf5ff269e0c4"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 04:08:42.630', '2020-03-15 04:08:42.630'); 366 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('277', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 04:08:42.660', '2020-03-15 04:08:42.660'); 367 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('278', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.690', '2020-03-15 04:08:42.690'); 368 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('279', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:08:42.730', '2020-03-15 04:08:42.730'); 369 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('280', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.763', '2020-03-15 04:08:42.763'); 370 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('281', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:42.817', '2020-03-15 04:08:42.817'); 371 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('282', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["79b123f3-ea8b-465a-af6d-493bc5e91a4e"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:08:42.967', '2020-03-15 04:08:42.967'); 372 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('283', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.010', '2020-03-15 04:08:43.010'); 373 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('284', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["ec317734-967b-401f-ab45-48fc59bc9276"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 04:08:43.117', '2020-03-15 04:08:43.117'); 374 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('285', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.403', '2020-03-15 04:08:43.403'); 375 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('286', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["e0284537-2c85-4562-a383-43d3d61dcfb6"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 04:08:43.477', '2020-03-15 04:08:43.477'); 376 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('287', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.520', '2020-03-15 04:08:43.520'); 377 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('288', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.563', '2020-03-15 04:08:43.563'); 378 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('289', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["fdb68af2-d8c9-42b3-9c98-d2134fd67afd"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 04:08:43.627', '2020-03-15 04:08:43.627'); 379 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('290', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["fdb68af2-d8c9-42b3-9c98-d2134fd67afd"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 04:08:43.673', '2020-03-15 04:08:43.673'); 380 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('291', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 04:08:43.703', '2020-03-15 04:08:43.703'); 381 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('292', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.723', '2020-03-15 04:08:43.723'); 382 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('293', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.767', '2020-03-15 04:08:43.767'); 383 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('294', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.790', '2020-03-15 04:08:43.790'); 384 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('295', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.820', '2020-03-15 04:08:43.820'); 385 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('296', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.853', '2020-03-15 04:08:43.853'); 386 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('297', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.877', '2020-03-15 04:08:43.877'); 387 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('298', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 04:08:43.913', '2020-03-15 04:08:43.913'); 388 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('299', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.957', '2020-03-15 04:08:43.957'); 389 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('300', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:08:43.993', '2020-03-15 04:08:43.993'); 390 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('301', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 04:08:44.033', '2020-03-15 04:08:44.033'); 391 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('302', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 04:09:20.960', '2020-03-15 04:09:20.960'); 392 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('303', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.343', '2020-03-15 04:09:21.343'); 393 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('304', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.390', '2020-03-15 04:09:21.390'); 394 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('305', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["8343b2e9-05a6-4989-869b-76a5f4bf4c89"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:09:21.430', '2020-03-15 04:09:21.430'); 395 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('306', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.460', '2020-03-15 04:09:21.460'); 396 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('307', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.500', '2020-03-15 04:09:21.500'); 397 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('308', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1bebaf0e-a0f3-4f27-a18f-fe12ff7ec333"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:09:21.547', '2020-03-15 04:09:21.547'); 398 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('309', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.587', '2020-03-15 04:09:21.587'); 399 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('310', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["903a8026-fb39-468b-9748-c97e8a691f54"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 04:09:21.627', '2020-03-15 04:09:21.627'); 400 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('311', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 04:09:21.660', '2020-03-15 04:09:21.660'); 401 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('312', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.683', '2020-03-15 04:09:21.683'); 402 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('313', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.737', '2020-03-15 04:09:21.737'); 403 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('314', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["52a1496c-d043-4e91-904f-7da25a0fd35d"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 04:09:21.780', '2020-03-15 04:09:21.780'); 404 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('315', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.827', '2020-03-15 04:09:21.827'); 405 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('316', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.877', '2020-03-15 04:09:21.877'); 406 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('317', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["87f737d4-7e7d-4c4c-9ac3-e95c4e1a27b7"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 04:09:21.923', '2020-03-15 04:09:21.923'); 407 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('318', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:21.973', '2020-03-15 04:09:21.973'); 408 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('319', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["df905cd3-b59a-4a50-8db9-802b599e7512"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 04:09:22.013', '2020-03-15 04:09:22.013'); 409 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('320', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 04:09:22.043', '2020-03-15 04:09:22.043'); 410 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('321', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 04:09:22.073', '2020-03-15 04:09:22.073'); 411 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('322', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:09:22.127', '2020-03-15 04:09:22.127'); 412 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('323', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:22.160', '2020-03-15 04:09:22.160'); 413 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('324', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:22.217', '2020-03-15 04:09:22.217'); 414 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('325', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["759907db-027c-45df-a564-9e3206f60722"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:09:22.483', '2020-03-15 04:09:22.483'); 415 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('326', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:22.523', '2020-03-15 04:09:22.523'); 416 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('327', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["44c84e40-d665-4fd4-9f50-c0984580b709"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 04:09:22.633', '2020-03-15 04:09:22.633'); 417 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('328', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 04:09:22.937', '2020-03-15 04:09:22.937'); 418 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('329', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["2048c150-95ab-47ac-a253-ec05cab832bf"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 04:09:23.007', '2020-03-15 04:09:23.007'); 419 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('330', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.043', '2020-03-15 04:09:23.043'); 420 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('331', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.097', '2020-03-15 04:09:23.097'); 421 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('332', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["37d32f19-3984-415d-8286-79b6e5e1c957"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 04:09:23.177', '2020-03-15 04:09:23.177'); 422 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('333', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["37d32f19-3984-415d-8286-79b6e5e1c957"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 04:09:23.223', '2020-03-15 04:09:23.223'); 423 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('334', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 04:09:23.253', '2020-03-15 04:09:23.253'); 424 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('335', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.283', '2020-03-15 04:09:23.283'); 425 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('336', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.327', '2020-03-15 04:09:23.327'); 426 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('337', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.360', '2020-03-15 04:09:23.360'); 427 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('338', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.393', '2020-03-15 04:09:23.393'); 428 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('339', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.430', '2020-03-15 04:09:23.430'); 429 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('340', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.457', '2020-03-15 04:09:23.457'); 430 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('341', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 04:09:23.513', '2020-03-15 04:09:23.513'); 431 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('342', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.553', '2020-03-15 04:09:23.553'); 432 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('343', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.607', '2020-03-15 04:09:23.607'); 433 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('344', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 04:09:23.660', '2020-03-15 04:09:23.660'); 434 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('345', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 04:14:39.593', '2020-03-15 04:14:39.593'); 435 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('346', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.010', '2020-03-15 04:14:40.010'); 436 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('347', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.057', '2020-03-15 04:14:40.057'); 437 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('348', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["a381041b-f969-4c25-adea-fad2bc5d674e"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:14:40.103', '2020-03-15 04:14:40.103'); 438 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('349', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.137', '2020-03-15 04:14:40.137'); 439 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('350', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.180', '2020-03-15 04:14:40.180'); 440 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('351', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["04fd9af1-0977-4547-805c-6d27a4fd07f1"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:14:40.230', '2020-03-15 04:14:40.230'); 441 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('352', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.273', '2020-03-15 04:14:40.273'); 442 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('353', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["0178e9bd-1e8d-44d9-9fa4-c134cf84d0f1"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 04:14:40.310', '2020-03-15 04:14:40.310'); 443 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('354', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 04:14:40.340', '2020-03-15 04:14:40.340'); 444 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('355', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.383', '2020-03-15 04:14:40.383'); 445 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('356', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.427', '2020-03-15 04:14:40.427'); 446 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('357', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["9c213d9d-8965-4cc0-840e-ac6e0491f10c"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 04:14:40.470', '2020-03-15 04:14:40.470'); 447 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('358', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.500', '2020-03-15 04:14:40.500'); 448 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('359', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.537', '2020-03-15 04:14:40.537'); 449 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('360', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["596cb505-caf2-4aba-8a0d-e8bfd624c59f"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 04:14:40.583', '2020-03-15 04:14:40.583'); 450 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('361', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.627', '2020-03-15 04:14:40.627'); 451 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('362', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["f9e11d14-9521-492d-a835-0c4f3179bb85"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 04:14:40.670', '2020-03-15 04:14:40.670'); 452 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('363', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 04:14:40.710', '2020-03-15 04:14:40.710'); 453 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('364', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.763', '2020-03-15 04:14:40.763'); 454 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('365', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:14:40.797', '2020-03-15 04:14:40.797'); 455 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('366', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.827', '2020-03-15 04:14:40.827'); 456 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('367', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:40.880', '2020-03-15 04:14:40.880'); 457 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('368', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["ccd05fd4-5bfe-498d-8e14-4fc08df1f25b"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:14:41.040', '2020-03-15 04:14:41.040'); 458 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('369', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.080', '2020-03-15 04:14:41.080'); 459 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('370', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["d98d5b45-45a9-410c-97e0-018c22dd2071"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 04:14:41.207', '2020-03-15 04:14:41.207'); 460 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('371', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.480', '2020-03-15 04:14:41.480'); 461 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('372', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["67b1a2a6-bf25-435e-9d21-104aa17ff0a9"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 04:14:41.547', '2020-03-15 04:14:41.547'); 462 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('373', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.600', '2020-03-15 04:14:41.600'); 463 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('374', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.650', '2020-03-15 04:14:41.650'); 464 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('375', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["208aab5e-8c58-4934-8737-a711caffeed3"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 04:14:41.713', '2020-03-15 04:14:41.713'); 465 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('376', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["208aab5e-8c58-4934-8737-a711caffeed3"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 04:14:41.770', '2020-03-15 04:14:41.770'); 466 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('377', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 04:14:41.793', '2020-03-15 04:14:41.793'); 467 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('378', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.847', '2020-03-15 04:14:41.847'); 468 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('379', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.880', '2020-03-15 04:14:41.880'); 469 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('380', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.903', '2020-03-15 04:14:41.903'); 470 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('381', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.940', '2020-03-15 04:14:41.940'); 471 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('382', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:41.973', '2020-03-15 04:14:41.973'); 472 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('383', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 04:14:42.000', '2020-03-15 04:14:42.000'); 473 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('384', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 04:14:42.037', '2020-03-15 04:14:42.037'); 474 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('385', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:42.057', '2020-03-15 04:14:42.057'); 475 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('386', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:14:42.090', '2020-03-15 04:14:42.090'); 476 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('387', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 04:14:42.127', '2020-03-15 04:14:42.127'); 477 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('388', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 04:19:24.570', '2020-03-15 04:19:24.570'); 478 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('389', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 04:19:24.953', '2020-03-15 04:19:24.953'); 479 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('390', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.000', '2020-03-15 04:19:25.000'); 480 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('391', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["44aaca60-ddd9-4b32-b81d-1f8af1b01c98"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:19:25.033', '2020-03-15 04:19:25.033'); 481 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('392', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.060', '2020-03-15 04:19:25.060'); 482 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('393', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.093', '2020-03-15 04:19:25.093'); 483 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('394', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["124fad17-284e-4c29-87cd-020626b0a275"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:19:25.140', '2020-03-15 04:19:25.140'); 484 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('395', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.177', '2020-03-15 04:19:25.177'); 485 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('396', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["7f9624e7-86cf-4517-997e-57f9c176682e"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 04:19:25.220', '2020-03-15 04:19:25.220'); 486 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('397', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 04:19:25.250', '2020-03-15 04:19:25.250'); 487 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('398', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.280', '2020-03-15 04:19:25.280'); 488 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('399', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.330', '2020-03-15 04:19:25.330'); 489 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('400', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1f3ddf1a-931c-4889-b3da-6b6c82806bc0"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 04:19:25.377', '2020-03-15 04:19:25.377'); 490 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('401', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.407', '2020-03-15 04:19:25.407'); 491 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('402', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.443', '2020-03-15 04:19:25.443'); 492 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('403', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["41b65d45-fefa-4587-8fc9-3901b8aa98ce"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 04:19:25.487', '2020-03-15 04:19:25.487'); 493 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('404', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.533', '2020-03-15 04:19:25.533'); 494 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('405', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["6087c942-2c6d-44fb-ac65-0b8c72eb62ab"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 04:19:25.570', '2020-03-15 04:19:25.570'); 495 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('406', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 04:19:25.610', '2020-03-15 04:19:25.610'); 496 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('407', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.640', '2020-03-15 04:19:25.640'); 497 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('408', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:19:25.687', '2020-03-15 04:19:25.687'); 498 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('409', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.720', '2020-03-15 04:19:25.720'); 499 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('410', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.777', '2020-03-15 04:19:25.777'); 500 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('411', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["d6b57ee4-01fb-49e8-a154-bd29999b5933"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:19:25.907', '2020-03-15 04:19:25.907'); 501 GO 502 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('412', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:25.987', '2020-03-15 04:19:25.987'); 503 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('413', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["26cdd12f-ea5a-4f13-83a1-2498a04025c3"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 04:19:26.100', '2020-03-15 04:19:26.100'); 504 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('414', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.410', '2020-03-15 04:19:26.410'); 505 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('415', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["d0b6c9d7-81dc-46e7-8f5c-274ffec50de5"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 04:19:26.483', '2020-03-15 04:19:26.483'); 506 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('416', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.540', '2020-03-15 04:19:26.540'); 507 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('417', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.590', '2020-03-15 04:19:26.590'); 508 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('418', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["d260d214-fcde-4f1e-b076-0abaf3ab1ba5"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 04:19:26.670', '2020-03-15 04:19:26.670'); 509 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('419', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["d260d214-fcde-4f1e-b076-0abaf3ab1ba5"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 04:19:26.717', '2020-03-15 04:19:26.717'); 510 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('420', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 04:19:26.747', '2020-03-15 04:19:26.747'); 511 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('421', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.777', '2020-03-15 04:19:26.777'); 512 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('422', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.817', '2020-03-15 04:19:26.817'); 513 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('423', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.850', '2020-03-15 04:19:26.850'); 514 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('424', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.883', '2020-03-15 04:19:26.883'); 515 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('425', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.920', '2020-03-15 04:19:26.920'); 516 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('426', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 04:19:26.950', '2020-03-15 04:19:26.950'); 517 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('427', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 04:19:26.990', '2020-03-15 04:19:26.990'); 518 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('428', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:27.027', '2020-03-15 04:19:27.027'); 519 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('429', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:19:27.060', '2020-03-15 04:19:27.060'); 520 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('430', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 04:19:27.100', '2020-03-15 04:19:27.100'); 521 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('431', '1', '/admin/logout', 'GET', '127.0.0.1', '', '2020-03-15 04:24:45.410', '2020-03-15 04:24:45.410'); 522 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('432', '1', '/admin/info/permission', 'GET', '127.0.0.1', '', '2020-03-15 04:24:45.827', '2020-03-15 04:24:45.827'); 523 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('433', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:45.860', '2020-03-15 04:24:45.860'); 524 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('434', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["092217f5-5f35-40a2-93aa-e9a46a739cec"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:24:45.893', '2020-03-15 04:24:45.893'); 525 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('435', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:45.930', '2020-03-15 04:24:45.930'); 526 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('436', '1', '/admin/info/permission/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:45.967', '2020-03-15 04:24:45.967'); 527 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('437', '1', '/admin/edit/permission', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["26457988-35b7-4cfe-b1cc-6505498993c8"],"http_method[]":["GET","POST"],"http_path":["/\n/admin/info/op"],"id":["3"],"name":["tester"],"slug":["tester"]}', '2020-03-15 04:24:46.017', '2020-03-15 04:24:46.017'); 528 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('438', '1', '/admin/info/permission/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.057', '2020-03-15 04:24:46.057'); 529 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('439', '1', '/admin/new/permission', 'POST', '127.0.0.1', '{"__go_admin_post_type":["1"],"__go_admin_previous_":["/admin/info/permission?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["1cbe9682-8185-4a6a-ab5e-27c7986e00a4"],"http_method[]":["GET"],"http_path":["/\n/admin/info/op"],"name":["tester2"],"slug":["tester2"]}', '2020-03-15 04:24:46.093', '2020-03-15 04:24:46.093'); 530 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('440', '1', '/admin/delete/permission', 'POST', '127.0.0.1', '{"id":["4"]}', '2020-03-15 04:24:46.123', '2020-03-15 04:24:46.123'); 531 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('441', '1', '/admin/info/roles', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.170', '2020-03-15 04:24:46.170'); 532 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('442', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.210', '2020-03-15 04:24:46.210'); 533 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('443', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["e0809bf8-b0ea-4296-8343-188294f0d04d"],"name":["tester"],"permission_id[]":["3"],"slug":["tester"]}', '2020-03-15 04:24:46.250', '2020-03-15 04:24:46.250'); 534 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('444', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.277', '2020-03-15 04:24:46.277'); 535 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('445', '1', '/admin/info/roles/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.320', '2020-03-15 04:24:46.320'); 536 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('446', '1', '/admin/edit/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["d2bf536e-07cf-44ac-ad21-702a7a89bb6b"],"id":["3"],"name":["tester"],"permission_id[]":["3","2"],"slug":["tester"]}', '2020-03-15 04:24:46.360', '2020-03-15 04:24:46.360'); 537 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('447', '1', '/admin/info/roles/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.400', '2020-03-15 04:24:46.400'); 538 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('448', '1', '/admin/new/roles', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/roles?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["e47c72f5-88ba-420c-959e-da5701b25ef1"],"name":["tester2"],"permission_id[]":["3"],"slug":["tester2"]}', '2020-03-15 04:24:46.440', '2020-03-15 04:24:46.440'); 539 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('449', '1', '/admin/delete/roles', 'POST', '127.0.0.1', '{"id":["3"]}', '2020-03-15 04:24:46.477', '2020-03-15 04:24:46.477'); 540 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('450', '1', '/admin/info/manager', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.527', '2020-03-15 04:24:46.527'); 541 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('451', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["123"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:24:46.560', '2020-03-15 04:24:46.560'); 542 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('452', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.590', '2020-03-15 04:24:46.590'); 543 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('453', '1', '/admin/info/manager/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.643', '2020-03-15 04:24:46.643'); 544 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('454', '1', '/admin/edit/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["a14b2cb1-8403-4e9e-91e7-642eb43de615"],"avatar__delete_flag":["0"],"id":["1"],"name":["admin1"],"password":["admin"],"password_again":["admin"],"permission_id[]":["1"],"role_id[]":["1"],"username":["admin"]}', '2020-03-15 04:24:46.797', '2020-03-15 04:24:46.797'); 545 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('455', '1', '/admin/info/manager/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:46.840', '2020-03-15 04:24:46.840'); 546 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('456', '1', '/admin/new/manager', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/info/manager?__page=1\u0026__pageSize=10\u0026__sort=id\u0026__sort_type=desc"],"__go_admin_t_":["bf003301-4b93-4d11-b5e1-117608b5b1a1"],"avatar__delete_flag":["0"],"id":["1"],"name":["tester"],"password":["tester"],"password_again":["tester"],"permission_id[]":["1"],"role_id[]":["1"],"username":["tester"]}', '2020-03-15 04:24:46.963', '2020-03-15 04:24:46.963'); 547 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('457', '1', '/admin/menu', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.243', '2020-03-15 04:24:47.243'); 548 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('458', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["83df8f18-88d5-4d47-8b8b-4db42e1f76f1"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test menu"],"uri":["/example/test"]}', '2020-03-15 04:24:47.313', '2020-03-15 04:24:47.313'); 549 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('459', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.370', '2020-03-15 04:24:47.370'); 550 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('460', '1', '/admin/menu/edit/show', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.420', '2020-03-15 04:24:47.420'); 551 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('461', '1', '/admin/menu/edit', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["916fc225-9d2f-4079-aec2-e53c0effaa41"],"header":[""],"icon":["fa-angellist"],"id":["3"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test"]}', '2020-03-15 04:24:47.493', '2020-03-15 04:24:47.493'); 552 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('462', '1', '/admin/menu/new', 'POST', '127.0.0.1', '{"__go_admin_previous_":["/admin/menu"],"__go_admin_t_":["916fc225-9d2f-4079-aec2-e53c0effaa41"],"header":[""],"icon":["fa-angellist"],"parent_id":[""],"roles[]":["1"],"title":["test2 menu"],"uri":["/example/test2"]}', '2020-03-15 04:24:47.547', '2020-03-15 04:24:47.547'); 553 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('463', '1', '/admin/menu/delete', 'POST', '127.0.0.1', '{}', '2020-03-15 04:24:47.573', '2020-03-15 04:24:47.573'); 554 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('464', '1', '/admin/info/op', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.633', '2020-03-15 04:24:47.633'); 555 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('465', '1', '/admin/info/external', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.670', '2020-03-15 04:24:47.670'); 556 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('466', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.700', '2020-03-15 04:24:47.700'); 557 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('467', '1', '/admin/info/external/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.740', '2020-03-15 04:24:47.740'); 558 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('468', '1', '/admin/info/external/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.777', '2020-03-15 04:24:47.777'); 559 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('469', '1', '/admin/info/user', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.837', '2020-03-15 04:24:47.837'); 560 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('470', '1', '/admin/export/user', 'POST', '127.0.0.1', '{"id":["1"]}', '2020-03-15 04:24:47.870', '2020-03-15 04:24:47.870'); 561 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('471', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.903', '2020-03-15 04:24:47.903'); 562 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('472', '1', '/admin/info/user/edit', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.940', '2020-03-15 04:24:47.940'); 563 INSERT INTO [dbo].[goadmin_operation_log] ([id], [user_id], [path], [method], [ip], [input], [created_at], [updated_at]) VALUES ('473', '1', '/admin/info/user/new', 'GET', '127.0.0.1', '', '2020-03-15 04:24:47.980', '2020-03-15 04:24:47.980'); 564 GO 565 SET IDENTITY_INSERT [dbo].[goadmin_operation_log] OFF 566 GO 567 COMMIT 568 GO 569 570 -- ---------------------------- 571 -- Table structure for goadmin_permissions 572 -- ---------------------------- 573 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_permissions]') AND type IN ('U')) 574 DROP TABLE [dbo].[goadmin_permissions] 575 GO 576 CREATE TABLE [dbo].[goadmin_permissions] ( 577 [id] int IDENTITY(1,1) NOT NULL, 578 [name] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 579 [slug] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 580 [http_method] varchar(255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT NULL, 581 [http_path] text COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 582 [created_at] datetime NULL DEFAULT (getdate()), 583 [updated_at] datetime NULL DEFAULT (getdate()) 584 ) 585 ON [PRIMARY] 586 TEXTIMAGE_ON [PRIMARY] 587 GO 588 589 -- ---------------------------- 590 -- Records of goadmin_permissions 591 -- ---------------------------- 592 BEGIN TRANSACTION 593 GO 594 SET IDENTITY_INSERT [dbo].[goadmin_permissions] ON 595 GO 596 INSERT INTO [dbo].[goadmin_permissions] ([id], [name], [slug], [http_method], [http_path], [created_at], [updated_at]) VALUES ('1', 'All permission', '*', '', '*', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 597 INSERT INTO [dbo].[goadmin_permissions] ([id], [name], [slug], [http_method], [http_path], [created_at], [updated_at]) VALUES ('2', 'Dashboard', 'dashboard', 'GET,PUT,POST,DELETE', '/', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 598 GO 599 SET IDENTITY_INSERT [dbo].[goadmin_permissions] OFF 600 GO 601 COMMIT 602 GO 603 604 -- ---------------------------- 605 -- Table structure for goadmin_role_menu 606 -- ---------------------------- 607 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_role_menu]') AND type IN ('U')) 608 DROP TABLE [dbo].[goadmin_role_menu] 609 GO 610 CREATE TABLE [dbo].[goadmin_role_menu] ( 611 [role_id] int NOT NULL, 612 [menu_id] int NOT NULL, 613 [created_at] datetime NULL DEFAULT (getdate()), 614 [updated_at] datetime NULL DEFAULT (getdate()) 615 ) 616 ON [PRIMARY] 617 GO 618 619 -- ---------------------------- 620 -- Records of goadmin_role_menu 621 -- ---------------------------- 622 BEGIN TRANSACTION 623 GO 624 INSERT INTO [dbo].[goadmin_role_menu] VALUES ('1', '1', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 625 INSERT INTO [dbo].[goadmin_role_menu] VALUES ('1', '7', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 626 INSERT INTO [dbo].[goadmin_role_menu] VALUES ('1', '8', '2019-09-11 10:20:55.000', '2019-09-11 10:20:55.000'); 627 INSERT INTO [dbo].[goadmin_role_menu] VALUES ('2', '7', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 628 INSERT INTO [dbo].[goadmin_role_menu] VALUES ('2', '8', '2019-09-11 10:20:55.000', '2019-09-11 10:20:55.000'); 629 GO 630 COMMIT 631 GO 632 633 -- ---------------------------- 634 -- Table structure for goadmin_role_permissions 635 -- ---------------------------- 636 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_role_permissions]') AND type IN ('U')) 637 DROP TABLE [dbo].[goadmin_role_permissions] 638 GO 639 CREATE TABLE [dbo].[goadmin_role_permissions] ( 640 [role_id] int NOT NULL, 641 [permission_id] int NOT NULL, 642 [created_at] datetime NULL DEFAULT (getdate()), 643 [updated_at] datetime NULL DEFAULT (getdate()) 644 ) 645 ON [PRIMARY] 646 GO 647 648 -- ---------------------------- 649 -- Records of goadmin_role_permissions 650 -- ---------------------------- 651 BEGIN TRANSACTION 652 GO 653 INSERT INTO [dbo].[goadmin_role_permissions] VALUES ('1', '1', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 654 INSERT INTO [dbo].[goadmin_role_permissions] VALUES ('1', '2', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 655 INSERT INTO [dbo].[goadmin_role_permissions] VALUES ('2', '2', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 656 GO 657 COMMIT 658 GO 659 660 -- ---------------------------- 661 -- Table structure for goadmin_role_users 662 -- ---------------------------- 663 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_role_users]') AND type IN ('U')) 664 DROP TABLE [dbo].[goadmin_role_users] 665 GO 666 CREATE TABLE [dbo].[goadmin_role_users] ( 667 [role_id] int NOT NULL, 668 [user_id] int NOT NULL, 669 [created_at] datetime NULL DEFAULT (getdate()), 670 [updated_at] datetime NULL DEFAULT (getdate()) 671 ) 672 ON [PRIMARY] 673 GO 674 675 -- ---------------------------- 676 -- Records of goadmin_role_users 677 -- ---------------------------- 678 BEGIN TRANSACTION 679 GO 680 INSERT INTO [dbo].[goadmin_role_users] VALUES ('1', '1', '2020-03-15 04:24:46.757', '2020-03-15 04:24:46.757'); 681 INSERT INTO [dbo].[goadmin_role_users] VALUES ('2', '2', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 682 GO 683 COMMIT 684 GO 685 686 -- ---------------------------- 687 -- Table structure for goadmin_roles 688 -- ---------------------------- 689 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_roles]') AND type IN ('U')) 690 DROP TABLE [dbo].[goadmin_roles] 691 GO 692 CREATE TABLE [dbo].[goadmin_roles] ( 693 [id] int IDENTITY(1,1) NOT NULL, 694 [name] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 695 [slug] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 696 [created_at] datetime NULL DEFAULT (getdate()), 697 [updated_at] datetime NULL DEFAULT (getdate()) 698 ) 699 ON [PRIMARY] 700 GO 701 702 -- ---------------------------- 703 -- Records of goadmin_roles 704 -- ---------------------------- 705 BEGIN TRANSACTION 706 GO 707 SET IDENTITY_INSERT [dbo].[goadmin_roles] ON 708 GO 709 INSERT INTO [dbo].[goadmin_roles] ([id], [name], [slug], [created_at], [updated_at]) VALUES ('1', 'Administrator', 'administrator', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 710 INSERT INTO [dbo].[goadmin_roles] ([id], [name], [slug], [created_at], [updated_at]) VALUES ('2', 'Operator', 'operator', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 711 GO 712 SET IDENTITY_INSERT [dbo].[goadmin_roles] OFF 713 GO 714 COMMIT 715 GO 716 717 -- ---------------------------- 718 -- Table structure for goadmin_session 719 -- ---------------------------- 720 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_session]') AND type IN ('U')) 721 DROP TABLE [dbo].[goadmin_session] 722 GO 723 CREATE TABLE [dbo].[goadmin_session] ( 724 [id] int IDENTITY(1,1) NOT NULL, 725 [sid] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT '', 726 [values] varchar(3000) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT '', 727 [created_at] datetime NULL DEFAULT (getdate()), 728 [updated_at] datetime NULL DEFAULT (getdate()) 729 ) 730 ON [PRIMARY] 731 GO 732 733 -- ---------------------------- 734 -- Records of goadmin_session 735 -- ---------------------------- 736 BEGIN TRANSACTION 737 GO 738 SET IDENTITY_INSERT [dbo].[goadmin_session] ON 739 GO 740 INSERT INTO [dbo].[goadmin_session] ([id], [sid], [values], [created_at], [updated_at]) VALUES ('43', '5ada7ffd-1025-4bfe-802a-43b7e6e79582', '{"user_id":1}', '2020-03-15 04:24:45.750', '2020-03-15 04:24:45.750'); 741 INSERT INTO [dbo].[goadmin_session] ([id], [sid], [values], [created_at], [updated_at]) VALUES ('44', 'a01d8b11-083e-4075-8287-1bfb1865fe70', '{"user_id":3}', '2020-03-15 04:24:47.190', '2020-03-15 04:24:47.190'); 742 GO 743 SET IDENTITY_INSERT [dbo].[goadmin_session] OFF 744 GO 745 COMMIT 746 GO 747 748 -- ---------------------------- 749 -- Table structure for goadmin_site 750 -- ---------------------------- 751 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_site]') AND type IN ('U')) 752 DROP TABLE [dbo].[goadmin_site] 753 GO 754 CREATE TABLE [dbo].[goadmin_site] ( 755 [id] int IDENTITY(1,1) NOT NULL, 756 [key] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 757 [value] text COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 758 [state] tinyint NULL DEFAULT ((0)), 759 [created_at] datetime NULL DEFAULT (getdate()), 760 [updated_at] datetime NULL DEFAULT (getdate()) 761 ) 762 ON [PRIMARY] 763 TEXTIMAGE_ON [PRIMARY] 764 GO 765 766 -- ---------------------------- 767 -- Table structure for goadmin_user_permissions 768 -- ---------------------------- 769 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_user_permissions]') AND type IN ('U')) 770 DROP TABLE [dbo].[goadmin_user_permissions] 771 GO 772 CREATE TABLE [dbo].[goadmin_user_permissions] ( 773 [user_id] int NOT NULL, 774 [permission_id] int NOT NULL, 775 [created_at] datetime NULL DEFAULT (getdate()), 776 [updated_at] datetime NULL DEFAULT (getdate()) 777 ) 778 ON [PRIMARY] 779 GO 780 781 -- ---------------------------- 782 -- Records of goadmin_user_permissions 783 -- ---------------------------- 784 BEGIN TRANSACTION 785 GO 786 INSERT INTO [dbo].[goadmin_user_permissions] VALUES ('1', '1', '2020-03-15 04:24:46.763', '2020-03-15 04:24:46.763'); 787 INSERT INTO [dbo].[goadmin_user_permissions] VALUES ('2', '2', '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 788 GO 789 COMMIT 790 GO 791 792 -- ---------------------------- 793 -- Table structure for goadmin_users 794 -- ---------------------------- 795 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[goadmin_users]') AND type IN ('U')) 796 DROP TABLE [dbo].[goadmin_users] 797 GO 798 CREATE TABLE [dbo].[goadmin_users] ( 799 [id] int IDENTITY(1,1) NOT NULL, 800 [username] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 801 [password] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL DEFAULT '', 802 [name] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL, 803 [avatar] varchar(255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT NULL, 804 [remember_token] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL DEFAULT NULL, 805 [created_at] datetime NULL DEFAULT (getdate()), 806 [updated_at] datetime NULL DEFAULT (getdate()) 807 ) 808 ON [PRIMARY] 809 GO 810 811 -- ---------------------------- 812 -- Records of goadmin_users 813 -- ---------------------------- 814 BEGIN TRANSACTION 815 GO 816 SET IDENTITY_INSERT [dbo].[goadmin_users] ON 817 GO 818 INSERT INTO [dbo].[goadmin_users] ([id], [username], [password], [name], [avatar], [remember_token], [created_at], [updated_at]) VALUES ('1', 'admin', '$2a$10$9Bb3g7FUC/dDhYISUWegBOHy0498EuV50rVCgxkvAbpjavrKwhjvm', 'admin1', '', 'tlNcBVK9AvfYH7WEnwB1RKvocJu8FfRy4um3DJtwdHuJy0dwFsLOgAc0xUfh', '2019-09-10 00:00:00.000', '2020-03-15 12:24:46.000'); 819 INSERT INTO [dbo].[goadmin_users] ([id], [username], [password], [name], [avatar], [remember_token], [created_at], [updated_at]) VALUES ('2', 'operator', '$2a$10$rVqkOzHjN2MdlEprRflb1eGP0oZXuSrbJLOmJagFsCd81YZm0bsh.', 'Operator', '', null, '2019-09-10 00:00:00.000', '2019-09-10 00:00:00.000'); 820 GO 821 SET IDENTITY_INSERT [dbo].[goadmin_users] OFF 822 GO 823 COMMIT 824 GO 825 826 -- ---------------------------- 827 -- Table structure for user_like_books 828 -- ---------------------------- 829 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[user_like_books]') AND type IN ('U')) 830 DROP TABLE [dbo].[user_like_books] 831 GO 832 CREATE TABLE [dbo].[user_like_books] ( 833 [id] int IDENTITY(1,1) NOT NULL, 834 [user_id] int NULL, 835 [name] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 836 [created_at] datetime NULL DEFAULT (getdate()), 837 [updated_at] datetime NULL DEFAULT (getdate()) 838 ) 839 ON [PRIMARY] 840 GO 841 842 -- ---------------------------- 843 -- Records of user_like_books 844 -- ---------------------------- 845 BEGIN TRANSACTION 846 GO 847 SET IDENTITY_INSERT [dbo].[user_like_books] ON 848 GO 849 INSERT INTO [dbo].[user_like_books] ([id], [user_id], [name], [created_at], [updated_at]) VALUES ('1', '1', 'Robinson Crusoe', '2020-03-15 09:57:49.000', '2020-03-15 09:57:51.000'); 850 GO 851 SET IDENTITY_INSERT [dbo].[user_like_books] OFF 852 GO 853 COMMIT 854 GO 855 856 -- ---------------------------- 857 -- Table structure for users 858 -- ---------------------------- 859 IF EXISTS (SELECT * FROM sys.all_objects WHERE object_id = OBJECT_ID('[dbo].[users]') AND type IN ('U')) 860 DROP TABLE [dbo].[users] 861 GO 862 CREATE TABLE [dbo].[users] ( 863 [id] int IDENTITY(1,1) NOT NULL, 864 [name] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 865 [homepage] varchar(3000) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 866 [email] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 867 [birthday] timestamp NULL, 868 [country] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 869 [member_id] smallint NULL DEFAULT ((0)), 870 [city] varchar(50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 871 [password] varchar(100) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 872 [ip] varchar(20) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 873 [certificate] varchar(300) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 874 [money] int NULL, 875 [age] int NULL DEFAULT ((0)), 876 [resume] text COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 877 [gender] smallint NULL DEFAULT ((0)), 878 [fruit] varchar(200) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 879 [drink] varchar(200) COLLATE SQL_Latin1_General_CP1_CI_AS NULL, 880 [experience] smallint NULL DEFAULT ((0)), 881 [created_at] datetime NULL, 882 [updated_at] datetime NULL 883 ) 884 ON [PRIMARY] 885 TEXTIMAGE_ON [PRIMARY] 886 GO 887 888 -- ---------------------------- 889 -- Records of users 890 -- ---------------------------- 891 BEGIN TRANSACTION 892 GO 893 SET IDENTITY_INSERT [dbo].[users] ON 894 GO 895 INSERT INTO [dbo].[users] ([id], [name], [homepage], [email], [birthday], [country], [member_id], [city], [password], [ip], [certificate], [money], [age], [resume], [gender], [fruit], [drink], [experience], [created_at], [updated_at]) VALUES ('1', 'Jack', 'http://jack.me', 'jack@163.com', DEFAULT, 'china', '6', 'guangzhou', '123456', '127.0.0.1', null, '503', '25', '<h1>Jack`s Resume</h1>', '0', 'apple', 'water', '0', '2020-03-15 09:54:39.000', '2020-03-15 09:54:42.000'); 896 GO 897 SET IDENTITY_INSERT [dbo].[users] OFF 898 GO 899 COMMIT 900 GO 901 902 903 -- ---------------------------- 904 -- Primary key structure for table goadmin_menu 905 -- ---------------------------- 906 ALTER TABLE [dbo].[goadmin_menu] ADD 907 CONSTRAINT [PK__goadmin___3213E83FF5EBF8CC] PRIMARY KEY CLUSTERED ([id]) 908 WITH (PAD_INDEX = OFF, 909 IGNORE_DUP_KEY = OFF, 910 ALLOW_ROW_LOCKS = ON, 911 ALLOW_PAGE_LOCKS = ON) 912 ON [default] 913 GO 914 915 -- ---------------------------- 916 -- Primary key structure for table goadmin_operation_log 917 -- ---------------------------- 918 ALTER TABLE [dbo].[goadmin_operation_log] ADD 919 CONSTRAINT [PK__goadmin___3213E83F6C7E1A25] PRIMARY KEY CLUSTERED ([id]) 920 WITH (PAD_INDEX = OFF, 921 IGNORE_DUP_KEY = OFF, 922 ALLOW_ROW_LOCKS = ON, 923 ALLOW_PAGE_LOCKS = ON) 924 ON [default] 925 GO 926 927 -- ---------------------------- 928 -- Primary key structure for table goadmin_permissions 929 -- ---------------------------- 930 ALTER TABLE [dbo].[goadmin_permissions] ADD 931 CONSTRAINT [PK__goadmin___3213E83F6A86BC1A] PRIMARY KEY CLUSTERED ([id]) 932 WITH (PAD_INDEX = OFF, 933 IGNORE_DUP_KEY = OFF, 934 ALLOW_ROW_LOCKS = ON, 935 ALLOW_PAGE_LOCKS = ON) 936 ON [default] 937 GO 938 939 -- ---------------------------- 940 -- Primary key structure for table goadmin_role_menu 941 -- ---------------------------- 942 ALTER TABLE [dbo].[goadmin_role_menu] ADD 943 CONSTRAINT [PK__goadmin___A2C36A610BBE2A9C] PRIMARY KEY CLUSTERED ([role_id],[menu_id]) 944 WITH (PAD_INDEX = OFF, 945 IGNORE_DUP_KEY = OFF, 946 ALLOW_ROW_LOCKS = ON, 947 ALLOW_PAGE_LOCKS = ON) 948 ON [default] 949 GO 950 951 -- ---------------------------- 952 -- Primary key structure for table goadmin_role_permissions 953 -- ---------------------------- 954 ALTER TABLE [dbo].[goadmin_role_permissions] ADD 955 CONSTRAINT [PK__goadmin___C85A54636259324C] PRIMARY KEY CLUSTERED ([role_id],[permission_id]) 956 WITH (PAD_INDEX = OFF, 957 IGNORE_DUP_KEY = OFF, 958 ALLOW_ROW_LOCKS = ON, 959 ALLOW_PAGE_LOCKS = ON) 960 ON [default] 961 GO 962 963 -- ---------------------------- 964 -- Primary key structure for table goadmin_role_users 965 -- ---------------------------- 966 ALTER TABLE [dbo].[goadmin_role_users] ADD 967 CONSTRAINT [PK__goadmin___9D9286BC2FC99BF2] PRIMARY KEY CLUSTERED ([role_id],[user_id]) 968 WITH (PAD_INDEX = OFF, 969 IGNORE_DUP_KEY = OFF, 970 ALLOW_ROW_LOCKS = ON, 971 ALLOW_PAGE_LOCKS = ON) 972 ON [default] 973 GO 974 975 -- ---------------------------- 976 -- Primary key structure for table goadmin_roles 977 -- ---------------------------- 978 ALTER TABLE [dbo].[goadmin_roles] ADD 979 CONSTRAINT [PK__goadmin___3213E83F7D29D84E] PRIMARY KEY CLUSTERED ([id]) 980 WITH (PAD_INDEX = OFF, 981 IGNORE_DUP_KEY = OFF, 982 ALLOW_ROW_LOCKS = ON, 983 ALLOW_PAGE_LOCKS = ON) 984 ON [default] 985 GO 986 987 -- ---------------------------- 988 -- Uniques structure for table goadmin_roles 989 -- ---------------------------- 990 ALTER TABLE [dbo].[goadmin_roles] ADD 991 CONSTRAINT [UQ__goadmin___72E12F1BF4C046D9] UNIQUE NONCLUSTERED ([name] ASC) 992 WITH (PAD_INDEX = OFF, 993 IGNORE_DUP_KEY = OFF, 994 ALLOW_ROW_LOCKS = ON, 995 ALLOW_PAGE_LOCKS = ON) 996 ON [PRIMARY] 997 GO 998 999 -- ---------------------------- 1000 -- Primary key structure for table goadmin_session 1001 -- ---------------------------- 1002 ALTER TABLE [dbo].[goadmin_session] ADD 1003 CONSTRAINT [PK__goadmin___3213E83FD9B9AF30] PRIMARY KEY CLUSTERED ([id]) 1004 WITH (PAD_INDEX = OFF, 1005 IGNORE_DUP_KEY = OFF, 1006 ALLOW_ROW_LOCKS = ON, 1007 ALLOW_PAGE_LOCKS = ON) 1008 ON [default] 1009 GO 1010 1011 -- ---------------------------- 1012 -- Primary key structure for table goadmin_site 1013 -- ---------------------------- 1014 ALTER TABLE [dbo].[goadmin_site] ADD 1015 CONSTRAINT [PK__goadmin___3213E83FBC0B9B22] PRIMARY KEY CLUSTERED ([id]) 1016 WITH (PAD_INDEX = OFF, 1017 IGNORE_DUP_KEY = OFF, 1018 ALLOW_ROW_LOCKS = ON, 1019 ALLOW_PAGE_LOCKS = ON) 1020 ON [default] 1021 GO 1022 1023 -- ---------------------------- 1024 -- Primary key structure for table goadmin_user_permissions 1025 -- ---------------------------- 1026 ALTER TABLE [dbo].[goadmin_user_permissions] ADD 1027 CONSTRAINT [PK__goadmin___07ED06A0046D7D01] PRIMARY KEY CLUSTERED ([user_id],[permission_id]) 1028 WITH (PAD_INDEX = OFF, 1029 IGNORE_DUP_KEY = OFF, 1030 ALLOW_ROW_LOCKS = ON, 1031 ALLOW_PAGE_LOCKS = ON) 1032 ON [default] 1033 GO 1034 1035 -- ---------------------------- 1036 -- Primary key structure for table goadmin_users 1037 -- ---------------------------- 1038 ALTER TABLE [dbo].[goadmin_users] ADD 1039 CONSTRAINT [PK__goadmin___3213E83F354C3AA1] PRIMARY KEY CLUSTERED ([id]) 1040 WITH (PAD_INDEX = OFF, 1041 IGNORE_DUP_KEY = OFF, 1042 ALLOW_ROW_LOCKS = ON, 1043 ALLOW_PAGE_LOCKS = ON) 1044 ON [default] 1045 GO 1046 1047 -- ---------------------------- 1048 -- Uniques structure for table goadmin_users 1049 -- ---------------------------- 1050 ALTER TABLE [dbo].[goadmin_users] ADD 1051 CONSTRAINT [UQ__goadmin___F3DBC572BFCF4D97] UNIQUE NONCLUSTERED ([username] ASC) 1052 WITH (PAD_INDEX = OFF, 1053 IGNORE_DUP_KEY = OFF, 1054 ALLOW_ROW_LOCKS = ON, 1055 ALLOW_PAGE_LOCKS = ON) 1056 ON [PRIMARY] 1057 GO 1058 1059 -- ---------------------------- 1060 -- Primary key structure for table user_like_books 1061 -- ---------------------------- 1062 ALTER TABLE [dbo].[user_like_books] ADD 1063 CONSTRAINT [PK__user_lik__3213E83F151C3FE8] PRIMARY KEY CLUSTERED ([id]) 1064 WITH (PAD_INDEX = OFF, 1065 IGNORE_DUP_KEY = OFF, 1066 ALLOW_ROW_LOCKS = ON, 1067 ALLOW_PAGE_LOCKS = ON) 1068 ON [default] 1069 GO 1070 1071 -- ---------------------------- 1072 -- Primary key structure for table users 1073 -- ---------------------------- 1074 ALTER TABLE [dbo].[users] ADD 1075 CONSTRAINT [PK__users__3213E83F2F479EFF] PRIMARY KEY CLUSTERED ([id]) 1076 WITH (PAD_INDEX = OFF, 1077 IGNORE_DUP_KEY = OFF, 1078 ALLOW_ROW_LOCKS = ON, 1079 ALLOW_PAGE_LOCKS = ON) 1080 ON [default] 1081 GO 1082 1083 -- ---------------------------- 1084 -- Options for table goadmin_menu 1085 -- ---------------------------- 1086 ALTER TABLE [dbo].[goadmin_menu] SET (LOCK_ESCALATION = TABLE) 1087 GO 1088 DBCC CHECKIDENT ('[dbo].[goadmin_menu]', RESEED, 9) 1089 GO 1090 1091 -- ---------------------------- 1092 -- Options for table goadmin_operation_log 1093 -- ---------------------------- 1094 ALTER TABLE [dbo].[goadmin_operation_log] SET (LOCK_ESCALATION = TABLE) 1095 GO 1096 DBCC CHECKIDENT ('[dbo].[goadmin_operation_log]', RESEED, 473) 1097 GO 1098 1099 -- ---------------------------- 1100 -- Options for table goadmin_permissions 1101 -- ---------------------------- 1102 ALTER TABLE [dbo].[goadmin_permissions] SET (LOCK_ESCALATION = TABLE) 1103 GO 1104 DBCC CHECKIDENT ('[dbo].[goadmin_permissions]', RESEED, 2) 1105 GO 1106 1107 -- ---------------------------- 1108 -- Options for table goadmin_role_menu 1109 -- ---------------------------- 1110 ALTER TABLE [dbo].[goadmin_role_menu] SET (LOCK_ESCALATION = TABLE) 1111 GO 1112 1113 -- ---------------------------- 1114 -- Options for table goadmin_role_permissions 1115 -- ---------------------------- 1116 ALTER TABLE [dbo].[goadmin_role_permissions] SET (LOCK_ESCALATION = TABLE) 1117 GO 1118 1119 -- ---------------------------- 1120 -- Options for table goadmin_role_users 1121 -- ---------------------------- 1122 ALTER TABLE [dbo].[goadmin_role_users] SET (LOCK_ESCALATION = TABLE) 1123 GO 1124 1125 -- ---------------------------- 1126 -- Options for table goadmin_roles 1127 -- ---------------------------- 1128 ALTER TABLE [dbo].[goadmin_roles] SET (LOCK_ESCALATION = TABLE) 1129 GO 1130 DBCC CHECKIDENT ('[dbo].[goadmin_roles]', RESEED, 2) 1131 GO 1132 1133 -- ---------------------------- 1134 -- Options for table goadmin_session 1135 -- ---------------------------- 1136 ALTER TABLE [dbo].[goadmin_session] SET (LOCK_ESCALATION = TABLE) 1137 GO 1138 DBCC CHECKIDENT ('[dbo].[goadmin_session]', RESEED, 44) 1139 GO 1140 1141 -- ---------------------------- 1142 -- Options for table goadmin_site 1143 -- ---------------------------- 1144 ALTER TABLE [dbo].[goadmin_site] SET (LOCK_ESCALATION = TABLE) 1145 GO 1146 DBCC CHECKIDENT ('[dbo].[goadmin_site]', RESEED, 1) 1147 GO 1148 1149 -- ---------------------------- 1150 -- Options for table goadmin_user_permissions 1151 -- ---------------------------- 1152 ALTER TABLE [dbo].[goadmin_user_permissions] SET (LOCK_ESCALATION = TABLE) 1153 GO 1154 1155 -- ---------------------------- 1156 -- Options for table goadmin_users 1157 -- ---------------------------- 1158 ALTER TABLE [dbo].[goadmin_users] SET (LOCK_ESCALATION = TABLE) 1159 GO 1160 DBCC CHECKIDENT ('[dbo].[goadmin_users]', RESEED, 3) 1161 GO 1162 1163 -- ---------------------------- 1164 -- Options for table user_like_books 1165 -- ---------------------------- 1166 ALTER TABLE [dbo].[user_like_books] SET (LOCK_ESCALATION = TABLE) 1167 GO 1168 DBCC CHECKIDENT ('[dbo].[user_like_books]', RESEED, 1) 1169 GO 1170 1171 -- ---------------------------- 1172 -- Options for table users 1173 -- ---------------------------- 1174 ALTER TABLE [dbo].[users] SET (LOCK_ESCALATION = TABLE) 1175 GO 1176 DBCC CHECKIDENT ('[dbo].[users]', RESEED, 1) 1177 GO 1178