7 |
|
-- ====================================================================== |
8 |
|
create table t_collection_type |
9 |
|
(id integer not null, |
10 |
< |
name varchar (80) not null, |
10 |
> |
name varchar (1000) not null, |
11 |
|
created_at float not null, |
12 |
|
created_by integer not null, |
13 |
|
modified_at float not null, |
15 |
|
|
16 |
|
create table t_app_family |
17 |
|
(id integer not null, |
18 |
< |
name varchar (80) not null, |
18 |
> |
name varchar (1000) not null, |
19 |
|
created_at float not null, |
20 |
|
created_by integer not null, |
21 |
|
modified_at float not null, |
23 |
|
|
24 |
|
create table t_application |
25 |
|
(id integer not null, |
26 |
< |
executable varchar (80) not null, |
27 |
< |
app_version varchar (80) not null, |
26 |
> |
executable varchar (1000) not null, |
27 |
> |
app_version varchar (1000) not null, |
28 |
|
app_family integer not null, |
29 |
|
input_type integer not null, |
30 |
|
output_type integer not null, |
36 |
|
create table t_app_config |
37 |
|
(id integer not null, |
38 |
|
application integer not null, |
39 |
< |
conditions_version varchar (80) not null, |
39 |
> |
conditions_version varchar (1000) not null, |
40 |
|
created_at float not null, |
41 |
|
created_by integer not null, |
42 |
|
modified_at float not null, |