mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-30 00:15:47 -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;
|