# Generated by Django 3.2.5 on 2021-07-27 13:20 from django.db import migrations, models import django_google_maps.fields class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='Store', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(max_length=200)), ('address_text', models.TextField(blank=True, null=True)), ('address', django_google_maps.fields.AddressField(max_length=200)), ('geolocation', django_google_maps.fields.GeoLocationField(max_length=100)), ('tel', models.CharField(blank=True, max_length=100, null=True)), ('line_id', models.CharField(blank=True, max_length=100, null=True)), ('email', models.EmailField(blank=True, max_length=254, null=True)), ('created_at', models.DateTimeField(auto_now_add=True, null=True)), ('updated_at', models.DateTimeField(auto_now=True)), ], ), ]