mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
427 B
SQL
11 lines
427 B
SQL
alter table tangible_objects add pvp_type int;
|
|
update tangible_objects set pvp_type=0;
|
|
alter table tangible_objects add pvp_faction int;
|
|
update tangible_objects set pvp_faction=0;
|
|
alter table building_objects add is_public char;
|
|
update building_objects set is_public='Y';
|
|
alter table cell_objects add is_public char;
|
|
update cell_objects set is_public='Y';
|
|
|
|
update version_number set version_number = 26, min_version_number=26;
|