mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-26 03:09:10 +00:00
4 lines
204 B
MySQL
4 lines
204 B
MySQL
|
ALTER TABLE `fso_lots`
|
|||
|
ADD COLUMN `skill_mode` TINYINT UNSIGNED NOT NULL DEFAULT '0' AFTER `move_flags`;
|
|||
|
|
|||
|
UPDATE fso_lots SET skill_mode = 1 where category IN ("services", "entertainment", "romance");
|