Add migration files 0001-0007 and update .gitignore

This commit is contained in:
2025-08-29 18:49:35 +09:00
parent 7593885bbc
commit 23a9902885
8 changed files with 1732 additions and 4 deletions

View File

@ -0,0 +1,29 @@
# Generated by Django 3.2.9 on 2025-08-29 09:18
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rog', '0003_add_missing_fields_to_gpscheckin'),
]
operations = [
migrations.RemoveIndex(
model_name='gpscheckin',
name='idx_zekken_event',
),
migrations.RemoveField(
model_name='gpscheckin',
name='path_order',
),
migrations.RemoveField(
model_name='gpscheckin',
name='zekken_number',
),
migrations.AddIndex(
model_name='gpscheckin',
index=models.Index(fields=['zekken', 'event_code', 'serial_number'], name='idx_zekken_event'),
),
]