mirror of
https://bitbucket.org/seefoe/dockerized-swg-src.git
synced 2026-07-30 00:16:19 -04:00
4 lines
141 B
SQL
4 lines
141 B
SQL
alter table auction_locations add search_enabled char(1) default 'Y';
|
|
update auction_locations set search_enabled = 'N'
|
|
where owner_id <> 0;
|