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

11 lines
213 B
SQL

create table scripts
(
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
sequence_no int,
script varchar(100),
detached int,
primary key (object_id, sequence_no)
);
grant select on scripts to public;