123456789101112131415161718192021 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2020-11-03 07:08
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('volunteer_arrangement', '0002_auto_20201024_1926'),
- ]
- operations = [
- migrations.AddField(
- model_name='volunteer',
- name='status',
- field=models.CharField(default='active', max_length=128),
- preserve_default=False,
- ),
- ]
|