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

9 lines
173 B
SQL

create table vehicle_objects
(
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
bogus int,
primary key (object_id)
);
grant select on vehicle_objects to public;