|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# flake8: noqa |
| 3 | +from __future__ import unicode_literals |
| 4 | + |
| 5 | +from django.db import migrations, models |
| 6 | + |
| 7 | + |
| 8 | +class Migration(migrations.Migration): |
| 9 | + |
| 10 | + dependencies = [ |
| 11 | + ('base', '0003_auto_20160821_1919'), |
| 12 | + ] |
| 13 | + |
| 14 | + operations = [ |
| 15 | + migrations.AlterField( |
| 16 | + model_name='contactrole', |
| 17 | + name='role', |
| 18 | + field=models.CharField( |
| 19 | + help_text='function performed by the responsible party', |
| 20 | + max_length=255, |
| 21 | + choices=[ |
| 22 | + (b'author', 'party who authored the resource'), |
| 23 | + (b'processor', 'party who has processed the data in a manner such that the resource has been modified'), |
| 24 | + (b'publisher', 'party who published the resource'), |
| 25 | + (b'custodian', 'party that accepts accountability and responsibility for the data and ensures appropriate care and maintenance of the resource'), |
| 26 | + (b'pointOfContact', 'party who can be contacted for acquiring knowledge about or acquisition of the resource'), |
| 27 | + (b'distributor', 'party who distributes the resource'), |
| 28 | + (b'user', 'party who uses the resource'), |
| 29 | + (b'resourceProvider', 'party that supplies the resource'), |
| 30 | + (b'originator', 'party who created the resource'), |
| 31 | + (b'owner', 'party that owns the resource'), |
| 32 | + (b'principalInvestigator', 'key party responsible for gathering information and conducting research')]), |
| 33 | + ), |
| 34 | + migrations.AlterField( |
| 35 | + model_name='resourcebase', |
| 36 | + name='category', |
| 37 | + field=models.ForeignKey( |
| 38 | + blank=True, |
| 39 | + to='base.TopicCategory', |
| 40 | + help_text='high-level geographic data thematic classification to assist in the grouping and search of available geographic data sets.', |
| 41 | + null=True), |
| 42 | + ), |
| 43 | + ] |
0 commit comments