12345678910111213141516171819202122232425 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2021-05-30 06:56
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('volunteer_arrangement', '0012_auto_20210527_1702'),
- ]
- operations = [
- migrations.AddField(
- model_name='servicetimeslot',
- name='service_address',
- field=models.CharField(blank=True, max_length=256, null=True),
- ),
- migrations.AddField(
- model_name='servicetimeslot',
- name='service_content',
- field=models.CharField(blank=True, max_length=256, null=True),
- ),
- ]
|