mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-31 01:15:48 -04:00
10 lines
171 B
SQL
10 lines
171 B
SQL
create table cnvtest_objvars
|
|
(
|
|
name varchar2(500),
|
|
id number,
|
|
deprecated number,
|
|
min_value float,
|
|
max_value float,
|
|
constraint pk_cnvtest_objvars primary key (id)
|
|
);
|