30 lines
894 B
Python
30 lines
894 B
Python
# Generated by Django 5.0.3 on 2025-09-15 07:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='SiteRun',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('search_id', models.CharField(db_index=True, max_length=64)),
|
|
('city', models.CharField(max_length=64)),
|
|
('business', models.CharField(max_length=128)),
|
|
('payload_json', models.JSONField()),
|
|
('result_json', models.JSONField()),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
options={
|
|
'ordering': ['-created_at'],
|
|
},
|
|
),
|
|
]
|