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

unfinshed visit list contain info about nd number

parent e4410ae6
No related branches found
No related tags found
1 merge request!130Resolve "notification list changes"
...@@ -7,11 +7,11 @@ from django.db import migrations, models ...@@ -7,11 +7,11 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('web', '0104_contact_required_list_update'), ('web', '0106_approaching_post_mail_list_update'),
] ]
operations = [ operations = [
migrations.RunSQL( migrations.RunSQL(
'UPDATE web_studycolumns SET nd_number=TRUE, type=TRUE WHERE id IN ' + 'UPDATE web_studycolumns SET nd_number=TRUE WHERE id IN ' +
'(SELECT visible_study_subject_columns_id FROM web_studyvisitlist WHERE type = \'EXCEEDED_TIME\');'), '(SELECT visible_study_subject_columns_id FROM web_studyvisitlist WHERE type = \'EXCEEDED_TIME\');'),
] ]
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2018-02-14 10:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0107_exceeded_visit_time_list_update'),
]
operations = [
migrations.RunSQL(
'UPDATE web_studycolumns SET nd_number=TRUE where id IN ' +
'(SELECT visible_study_subject_columns_id FROM web_studyvisitlist WHERE type = \'UNFINISHED\');'),
]
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