1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2021-05-27 09:02
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('volunteer_arrangement', '0011_bonusrecord_register_time'),
- ]
- operations = [
- migrations.AlterField(
- model_name='bonus',
- name='picture',
- field=models.CharField(blank=True, max_length=256, null=True),
- ),
- ]
|