From 738822306fa6caed43c953b6063a492e5556d357 Mon Sep 17 00:00:00 2001 From: hackmastr Date: Thu, 28 Dec 2023 18:07:27 +0100 Subject: [PATCH] Update schema.sql remove definer --- BasicAdmin/schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BasicAdmin/schema.sql b/BasicAdmin/schema.sql index c17a924..d852ed9 100644 --- a/BasicAdmin/schema.sql +++ b/BasicAdmin/schema.sql @@ -5,6 +5,7 @@ nick varchar(255) not null, steamid64 bigint not null, immunity int default 0 null, + server_id int unsigned default null null, created_at datetime default current_timestamp() null, updated_at datetime default current_timestamp() null on update current_timestamp(), constraint steamid64 @@ -93,7 +94,7 @@ BEGIN END; -create definer = root@`%` event expire_basic_admin_punishs_event on schedule +create event expire_basic_admin_punishs_event on schedule every '1' MINUTE starts '2023-12-14 22:00:06' enable