Skip to content
Snippets Groups Projects
Commit b8d3c86c authored by Carlos Vega's avatar Carlos Vega
Browse files

format

parent 54353f21
No related branches found
No related tags found
1 merge request!178Feature/import data pdp
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-30 17:33
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0125_merge_20181025_0745'),
]
operations = [
migrations.AlterField(
model_name='subject',
name='phone_number',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name=b'Phone number'),
),
migrations.AlterField(
model_name='subject',
name='phone_number_2',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name=b'Phone number 2'),
),
migrations.AlterField(
model_name='subject',
name='phone_number_3',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name=b'Phone number 3'),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-31 09:59
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0126_auto_20181030_1733'),
]
operations = [
migrations.AddField(
model_name='studysubject',
name='exclude_reason',
field=models.TextField(blank=True, max_length=2000, verbose_name=b'Exclude reason'),
),
migrations.AddField(
model_name='studysubject',
name='excluded',
field=models.BooleanField(default=False, verbose_name=b'Excluded'),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-31 10:16
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0127_auto_20181031_0959'),
]
operations = [
migrations.AddField(
model_name='studycolumns',
name='excluded',
field=models.BooleanField(default=True, verbose_name=b'Excluded'),
),
]
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2018-10-31 13:48
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0128_studycolumns_excluded'),
]
operations = [
migrations.AlterField(
model_name='studycolumns',
name='excluded',
field=models.BooleanField(default=False, verbose_name=b'Excluded'),
),
]
......@@ -13,8 +13,7 @@ class Visit(models.Model):
class Meta:
app_label = 'web'
subject = models.ForeignKey("web.StudySubject", on_delete=models.CASCADE,
verbose_name='Subject'
subject = models.ForeignKey("web.StudySubject", on_delete=models.CASCADE, verbose_name='Subject'
)
datetime_begin = models.DateTimeField(
verbose_name='Visit starts at'
......
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