Skip to content
Snippets Groups Projects
Commit abffe98a authored by Piotr Gawron's avatar Piotr Gawron
Browse files

version should be assigned to version not to notifyemail

parent 50702f39
No related branches found
No related tags found
1 merge request!127Resolve "Adding comment for element/reaction takes a lot of time"
-- notify email from model into project
alter table project_table add column notifyemail character varying default '';
update project_table set version = model_table.notifyemail from model_table where project_table.iddb = model_table.project_iddb;
update project_table set notifyemail = model_table.notifyemail from model_table where project_table.iddb = model_table.project_iddb;
alter table model_table drop column notifyemail;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment