Ben Sturmfels
531a97a3c9
The directory nesting is unnecessary here and confusing to navigate. I've moved all apps to the project subdirectory, currently called "www", but soon to be renamed "conservancy". I've also moved manage.py to the top-level directory.
26 lines
1.1 KiB
Python
26 lines
1.1 KiB
Python
# Generated by Django 1.10.7 on 2021-11-30 00:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Assignment',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('full_name', models.CharField(max_length=255)),
|
|
('email', models.EmailField(max_length=254)),
|
|
('place_of_residence', models.TextField(blank=True, verbose_name='Country of citizenship or residential address')),
|
|
('repository', models.URLField(blank=True, verbose_name='Code repository')),
|
|
('coverage', models.CharField(choices=[('up to this year', 'One-off up to and including this year'), ('ongoing', 'All existing and new contributions')], default='up to this year', max_length=50, verbose_name='Time period to assign')),
|
|
('attestation_of_copyright', models.BooleanField(verbose_name='I attest that I own the copyright on these works')),
|
|
],
|
|
),
|
|
]
|