Added PointOfInterest migration

doc_update
Joey Hines 2019-04-12 20:06:11 -05:00
parent d149e39b84
commit 7e8644a6b7
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
# Generated by Django 2.1.2 on 2019-04-11 21:15
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('GeoffreyApp', '0009_market'),
]
operations = [
migrations.CreateModel(
name='PointOfInterest',
fields=[
('location_ptr',
models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True,
primary_key=True, serialize=False, to='GeoffreyApp.Location')),
],
bases=('GeoffreyApp.location',),
),
]