10 |
|
name varchar (1000) not null, |
11 |
|
created_at float not null, |
12 |
|
created_by integer not null, |
13 |
< |
modified_at float not null, |
14 |
< |
modified_by integer not null); |
13 |
> |
modified_at float, |
14 |
> |
modified_by integer); |
15 |
|
|
16 |
|
create table t_app_family |
17 |
|
(id integer 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, |
22 |
< |
modified_by integer not null); |
21 |
> |
modified_at float, |
22 |
> |
modified_by integer); |
23 |
|
|
24 |
|
create table t_application |
25 |
|
(id integer not null, |
30 |
|
output_type integer not null, |
31 |
|
created_at float not null, |
32 |
|
created_by integer not null, |
33 |
< |
modified_at float not null, |
34 |
< |
modified_by integer not null); |
33 |
> |
modified_at float, |
34 |
> |
modified_by integer); |
35 |
|
|
36 |
|
create table t_app_config |
37 |
|
(id integer 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, |
43 |
< |
modified_by integer not null); |
42 |
> |
modified_at float, |
43 |
> |
modified_by integer); |
44 |
|
|
45 |
|
-- ====================================================================== |
46 |
|
alter table t_collection_type |