EQ2EMu/DB/updates/transporters_flight_path.sql
Image 905cc8b0ba Flight path support for transport maps issue #143
Fix #143

Adds flight_path_id, mount_id, mount_red_color, mount_green_color and mount_blue_color to transporters table

flight_path_id matches to StartAutoMount id or flight_paths id
mount_id matches to SetMount value
mount red/green/blue color are by default 255
2020-06-26 09:16:05 -04:00

6 lines
No EOL
580 B
SQL

alter table transporters add column flight_path_id int(10) unsigned not null default 0;
alter table transporters modify column transport_type ENUM('Zone','Location','Generic Transport','Flight') default 'Zone';
alter table transporters add column mount_id int(10) unsigned not null default 0;
alter table transporters add column mount_red_color smallint(5) unsigned not null default 255;
alter table transporters add column mount_green_color smallint(5) unsigned not null default 255;
alter table transporters add column mount_blue_color smallint(5) unsigned not null default 255;