mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
24 lines
624 B
Python
24 lines
624 B
Python
|
# Generated by Django 4.2.3 on 2023-07-10 07:37
|
||
|
|
||
|
import django.contrib.gis.db.models.fields
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Landmark',
|
||
|
fields=[
|
||
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=64)),
|
||
|
('location', django.contrib.gis.db.models.fields.PolygonField(srid=4326)),
|
||
|
],
|
||
|
),
|
||
|
]
|