fix minor bug + doc
This commit is contained in:
parent
351a4ba750
commit
543f08fd1a
5 changed files with 22 additions and 11 deletions
|
|
@ -1,13 +1,16 @@
|
|||
alter table action_gestion drop ag_ref_ag_id;
|
||||
--- repository insert into theme (the_name,the_filestyle) values ('Classic 692','style-r692.css');
|
||||
|
||||
ALTER TABLE tmp_pcmn ADD CONSTRAINT id_ux UNIQUE(id);
|
||||
create sequence tmp_pcmn_id_seq;
|
||||
ALTER TABLE tmp_pcmn ADD COLUMN id bigint;
|
||||
update tmp_pcmn set id=nextval('tmp_pcmn_id_seq');
|
||||
|
||||
ALTER TABLE tmp_pcmn ALTER COLUMN id SET NOT NULL;
|
||||
ALTER TABLE tmp_pcmn ALTER COLUMN id SET DEFAULT nextval('tmp_pcmn_id_seq'::regclass);
|
||||
ALTER TABLE tmp_pcmn ADD CONSTRAINT id_ux UNIQUE(id);
|
||||
COMMENT ON COLUMN tmp_pcmn.id IS 'allow to identify the row, it is unique and not null (pseudo pk)';
|
||||
|
||||
|
||||
insert into bilan (b_name,b_file_template,b_file_form,b_type) values ('ASBL','document/fr_be/bnb-asbl.rtf','document/fr_be/bnb-asbl.form','RTF');
|
||||
|
||||
alter table jnt_letter drop jl_amount_deb;
|
||||
alter table jnt_letter drop jl_amount_deb;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue