mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
10 lines
245 B
SQL
10 lines
245 B
SQL
create table object_templates -- NO_IMPORT
|
|
(
|
|
id number,
|
|
name varchar2(255),
|
|
constraint pk_object_templates primary key (id)
|
|
);
|
|
|
|
create index object_templates_name_idx on object_templates (name) ;
|
|
grant select on object_templates to public;
|