# Generated by Django 3.2.5 on 2021-07-18 17:29 from django.db import migrations, models import django_google_maps.fields class Migration(migrations.Migration): dependencies = [ ('backend', '0022_auto_20210719_0024'), ] operations = [ migrations.CreateModel( name='Place', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('address', django_google_maps.fields.AddressField(max_length=200)), ('geolocation', django_google_maps.fields.GeoLocationField(max_length=100)), ('created_at', models.DateTimeField(auto_now_add=True, null=True)), ('updated_at', models.DateTimeField(auto_now=True)), ('more_info', models.JSONField(blank=True, null=True)), ], ), ]