Ejemplo n.º 1
0
class Migration(migrations.Migration):

    dependencies = [
        ('consent', '0002_auto_20160621_1511'),
    ]

    operations = [
        migrations.AlterField(
            model_name='emailattachment',
            name='file',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='/home/rudolf/Documents/code/crate/working/crateweb/crate_filestorage'), upload_to=''),  # noqa
        ),
        migrations.AlterField(
            model_name='leaflet',
            name='pdf',
            field=crate_anon.crateweb.extra.fields.ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='/home/rudolf/Documents/code/crate/working/crateweb/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.leaflet_upload_to),  # noqa
        ),
        migrations.AlterField(
            model_name='letter',
            name='pdf',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='/home/rudolf/Documents/code/crate/working/crateweb/crate_filestorage'), upload_to=''),  # noqa
        ),
        migrations.AlterField(
            model_name='study',
            name='study_details_pdf',
            field=crate_anon.crateweb.extra.fields.ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='/home/rudolf/Documents/code/crate/working/crateweb/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.study_details_upload_to),  # noqa
        ),
        migrations.AlterField(
            model_name='study',
            name='subject_form_template_pdf',
            field=crate_anon.crateweb.extra.fields.ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='/home/rudolf/Documents/code/crate/working/crateweb/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.study_form_upload_to),  # noqa
        ),
    ]
Ejemplo n.º 2
0
class Migration(migrations.Migration):

    dependencies = [
        ('consent', '0004_auto_20160703_1530'),
    ]

    operations = [
        migrations.AlterField(
            model_name='emailattachment',
            name='file',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='C:/srv/crate_filestorage'), upload_to=''),  # noqa
        ),
        migrations.AlterField(
            model_name='leaflet',
            name='pdf',
            field=ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='C:/srv/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.leaflet_upload_to),  # noqa
        ),
        migrations.AlterField(
            model_name='letter',
            name='pdf',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='C:/srv/crate_filestorage'), upload_to=''),  # noqa
        ),
        migrations.AlterField(
            model_name='study',
            name='study_details_pdf',
            field=ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='C:/srv/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.study_details_upload_to),  # noqa
        ),
        migrations.AlterField(
            model_name='study',
            name='subject_form_template_pdf',
            field=ContentTypeRestrictedFileField(blank=True, storage=crate_anon.crateweb.consent.storage.CustomFileSystemStorage(base_url='download_privatestorage', location='C:/srv/crate_filestorage'), upload_to=crate_anon.crateweb.consent.models.study_form_upload_to),  # noqa
        ),
    ]
Ejemplo n.º 3
0
class Migration(migrations.Migration):

    dependencies = [
        ('consent', '0012_auto_20181102_1335'),
    ]

    operations = [
        migrations.AddField(
            model_name='contactrequest',
            name='clinician_email',
            field=models.TextField(default=None, null=True),
        ),
        migrations.AddField(
            model_name='contactrequest',
            name='clinician_initiated',
            field=models.BooleanField(default=False),
        ),
        migrations.AlterField(
            model_name='emailattachment',
            name='file',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.
                                   CustomFileSystemStorage(
                                       base_url='download_privatestorage',
                                       location='/srv/crate_filestorage'),
                                   upload_to=''),
        ),
        migrations.AlterField(
            model_name='leaflet',
            name='pdf',
            field=cardinal_pythonlib.django.fields.restrictedcontentfile.
            ContentTypeRestrictedFileField(
                blank=True,
                storage=crate_anon.crateweb.consent.storage.
                CustomFileSystemStorage(base_url='download_privatestorage',
                                        location='/srv/crate_filestorage'),
                upload_to=crate_anon.crateweb.consent.models.leaflet_upload_to
            ),
        ),
        migrations.AlterField(
            model_name='letter',
            name='pdf',
            field=models.FileField(storage=crate_anon.crateweb.consent.storage.
                                   CustomFileSystemStorage(
                                       base_url='download_privatestorage',
                                       location='/srv/crate_filestorage'),
                                   upload_to=''),
        ),
        migrations.AlterField(
            model_name='study',
            name='study_details_pdf',
            field=cardinal_pythonlib.django.fields.restrictedcontentfile.
            ContentTypeRestrictedFileField(
                blank=True,
                storage=crate_anon.crateweb.consent.storage.
                CustomFileSystemStorage(base_url='download_privatestorage',
                                        location='/srv/crate_filestorage'),
                upload_to=crate_anon.crateweb.consent.models.
                study_details_upload_to),
        ),
        migrations.AlterField(
            model_name='study',
            name='subject_form_template_pdf',
            field=cardinal_pythonlib.django.fields.restrictedcontentfile.
            ContentTypeRestrictedFileField(
                blank=True,
                storage=crate_anon.crateweb.consent.storage.
                CustomFileSystemStorage(base_url='download_privatestorage',
                                        location='/srv/crate_filestorage'),
                upload_to=crate_anon.crateweb.consent.models.
                study_form_upload_to),
        ),
    ]