Files
2014-01-17 07:03:16 -07:00

9 lines
161 B
SQL

create table free_object_ids
(
start_id int,
end_id int,
constraint pk_free_object_ids primary key (start_id)
);
grant select on free_object_ids to public;