Files
src-1.2/game/server/database/data/free_object_ids.sql
T
2014-01-17 07:03:16 -07:00

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;