[SQL] Bugs Table Migration (#2559) (#2602)

Copies bugs from `bugs` to `bug_reports`
This commit is contained in:
JJ 2022-11-30 22:09:49 -05:00 committed by GitHub
parent 85ae36ede5
commit de7a632d67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1 @@
INSERT INTO bug_reports (zone, character_name, ui_path, pos_x, pos_y, pos_z, category_name, optional_info_mask, target_name, bug_report, report_datetime, bug_status) SELECT zone, `name`, ui, x, y, z, `type`, flag, target, bug, `date`, status FROM bugs;