mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
9 lines
161 B
SQL
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;
|