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