mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
11 lines
327 B
SQL
11 lines
327 B
SQL
create table commands
|
|
(
|
|
object_id number(20), -- BIND_AS(DB::BindableNetworkId)
|
|
command_type int,
|
|
sequence_no int,
|
|
command varchar2(500),
|
|
constraint pk_commands primary key (object_id, command_type, sequence_no) using index tablespace indexes
|
|
) storage (initial 4k next 4k);
|
|
|
|
update version_number set version_number = 3;
|