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