mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
6 lines
121 B
SQL
6 lines
121 B
SQL
delete from free_object_ids;
|
|
|
|
insert into free_object_ids (start_id)
|
|
select nvl(max(object_id)+1,10000001)
|
|
from objects;
|