1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.11.5 on 2021-03-23 11:02
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('volunteer_arrangement', '0003_volunteer_status'),
- ]
- operations = [
- migrations.AddField(
- model_name='servicetimeslot',
- name='booked_count',
- field=models.IntegerField(default=0),
- ),
- ]
|