0003_volunteer_status.py 521 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2020-11-03 07:08
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('volunteer_arrangement', '0002_auto_20201024_1926'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='volunteer',
  12. name='status',
  13. field=models.CharField(default='active', max_length=128),
  14. preserve_default=False,
  15. ),
  16. ]