mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-11 21:44:58 -04:00
Added database/sql
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user