1234567891011121314151617181920212223 |
- # Generated by Django 3.0 on 2020-01-09 06:38
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('gauth', '0006_location_care_name'),
- ]
- operations = [
- migrations.AddField(
- model_name='location',
- name='average_rating',
- field=models.FloatField(blank=True, null=True),
- ),
- migrations.AddField(
- model_name='location',
- name='total_review',
- field=models.IntegerField(blank=True, null=True),
- ),
- ]
|