0013_auto_20210530_1456.py 698 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.5 on 2021-05-30 06:56
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('volunteer_arrangement', '0012_auto_20210527_1702'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='servicetimeslot',
  12. name='service_address',
  13. field=models.CharField(blank=True, max_length=256, null=True),
  14. ),
  15. migrations.AddField(
  16. model_name='servicetimeslot',
  17. name='service_content',
  18. field=models.CharField(blank=True, max_length=256, null=True),
  19. ),
  20. ]