mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-12 22:45:02 -04:00
Added database/sql
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
create table object_variable_names -- NO_IMPORT
|
||||
(
|
||||
id number(20),
|
||||
name varchar(500),
|
||||
constraint pk_object_variable_names primary key (id)
|
||||
);
|
||||
create index object_variable_name_index on object_variable_names(name);
|
||||
grant select on object_variable_names to public;
|
||||
|
||||
Reference in New Issue
Block a user