55 lines
2.4 KiB
SQL
55 lines
2.4 KiB
SQL
-- Alerts
|
|
insert into minecraft_manager_alert (select * from whitelist_alert);
|
|
|
|
-- Applications
|
|
insert into minecraft_manager_application (select * from whitelist_application);
|
|
|
|
-- Players
|
|
insert into minecraft_manager_player (uuid, username, application_id, auth_user_id, last_seen, first_seen)
|
|
select wp.uuid, wp.username, (
|
|
select mma.id from minecraft_manager_application mma where mma.username = (
|
|
select wa.username from whitelist_application wa where wp.application_id = wa.id
|
|
)
|
|
), wp.auth_user_id, wp.last_seen, wp.first_seen from whitelist_player wp
|
|
;
|
|
|
|
-- Tickets
|
|
insert into minecraft_manager_ticket (message, priority, resolved, world, x, y, z, date, player_id, staff_id)
|
|
select wt.message, wt.priority, wt.resolved, wt.world, wt.x, wt.y, wt.z, wt.date, (
|
|
select mmp.id from minecraft_manager_player mmp where mmp.uuid = (
|
|
select wp.uuid from whitelist_player wp where wp.id = wt.player_id
|
|
)
|
|
), (
|
|
select au.id from auth_user au where au.username = (
|
|
select wp2.username from whitelist_player wp2 where wp2.id = wt.staff_id
|
|
)
|
|
) from whitelist_ticket wt
|
|
;
|
|
|
|
-- Warnings
|
|
insert into minecraft_manager_warning (message, severity, date, player_id, staff_id)
|
|
select ww.message, ww.severity, ww.date, (
|
|
select mmp.id from minecraft_manager_player mmp where mmp.uuid = (
|
|
select wp.uuid from whitelist_player wp where wp.id = ww.player_id
|
|
)
|
|
), (
|
|
select au.id from auth_user au where au.username = (
|
|
select wp2.username from whitelist_player wp2 where wp2.id = ww.staff_id
|
|
)
|
|
) from whitelist_warning ww
|
|
;
|
|
|
|
-- User Settings
|
|
insert into minecraft_manager_usersettings (default_results, default_theme, default_timezone, search_player_ip, show_timestamp_chat, last_ip, auth_user_id)
|
|
select default_results, default_theme, default_timezone, search_player_ip, show_timestamp_chat, last_ip, auth_user_id from whitelist_usersettings wu
|
|
;
|
|
|
|
-- Notes (This migration ONLY works if you are using standard whitelist app, aka only Tickets had notes)
|
|
-- The ignore is because there were some incorrectly encoded characters giving MySQL a hard time
|
|
insert ignore into minecraft_manager_note (ref_table, ref_id, message, last_update, author_id)
|
|
select wn.ref_table, (
|
|
select mmt.id from minecraft_manager_ticket mmt where mmt.message = (
|
|
select wt.message from whitelist_ticket wt where wt.id = wn.ref_id
|
|
)
|
|
), wn.message, wn.last_update, wn.author_id from whitelist_note wn where (select count(*) from whitelist_ticket wt2 where wt2.id = wn.ref_id) > 0
|
|
; |