Skip to content

Commit

Permalink
Update schema.sql remove definer
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackmastr committed Dec 28, 2023
1 parent 6c6034a commit 7388223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BasicAdmin/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7388223

Please sign in to comment.