You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.1 KiB

  1. # Generated by Django 3.1.1 on 2020-10-26 10:35
  2. from django.db import migrations, models
  3. import django.db.models.deletion
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('input', '0023_auto_20201022_1400'),
  7. ]
  8. operations = [
  9. migrations.CreateModel(
  10. name='Travel',
  11. fields=[
  12. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  13. ('realname', models.CharField(max_length=200, null=True)),
  14. ('email', models.CharField(max_length=200, null=True)),
  15. ('username', models.CharField(max_length=200, null=True)),
  16. ('granted', models.BooleanField(null=True)),
  17. ('granted_date', models.DateField(null=True)),
  18. ('survey_mail_send', models.BooleanField(null=True)),
  19. ('request_url', models.CharField(max_length=2000)),
  20. ('project', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='input.project')),
  21. ],
  22. options={
  23. 'abstract': False,
  24. },
  25. ),
  26. ]