# | Line 36 | Line 36 | create table t_application | |
---|---|---|
36 | create table t_app_config | |
37 | (id integer not null, | |
38 | application integer not null, | |
39 | + | parameter_set varchar (1000) not null, -- FIXME! |
40 | conditions_version varchar (1000) not null, | |
41 | created_at float not null, | |
42 | created_by integer not null, | |
# | Line 116 | Line 117 | alter table t_app_config | |
117 | ||
118 | alter table t_app_config | |
119 | add constraint uq_app_config | |
120 | < | unique (application, conditions_version); |
120 | > | unique (application, parameter_set, conditions_version); |
121 | ||
122 | alter table t_app_config | |
123 | add constraint fk_app_config_app |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |