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.

35 lines
901 B

  1. # Generated by Django 3.1.1 on 2020-09-30 10:15
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('input', '0004_project_contact'),
  6. ]
  7. operations = [
  8. migrations.RemoveField(
  9. model_name='project',
  10. name='contact',
  11. ),
  12. migrations.AddField(
  13. model_name='project',
  14. name='email',
  15. field=models.CharField(max_length=200, null=True),
  16. ),
  17. migrations.AddField(
  18. model_name='project',
  19. name='realname',
  20. field=models.CharField(max_length=200, null=True),
  21. ),
  22. migrations.AddField(
  23. model_name='project',
  24. name='username',
  25. field=models.CharField(max_length=200, null=True),
  26. ),
  27. migrations.DeleteModel(
  28. name='Volonteer',
  29. ),
  30. ]