mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-14 00:01:30 -04:00
12 lines
362 B
SQL
12 lines
362 B
SQL
create table object_templates -- NO_IMPORT
|
|
(
|
|
id number,
|
|
name varchar2(255),
|
|
constraint pk_object_templates primary key (id) using index tablespace indexes
|
|
);
|
|
|
|
create index object_templates_name_idx on object_templates (name) tablespace indexes;
|
|
grant select on object_templates to public;
|
|
|
|
update version_number set version_number=96, min_version_number=96;
|