photo_point and cppoint were reverted to checkin_point
This commit is contained in:
28
rog/migrations/0011_auto_20250830_0426.py
Normal file
28
rog/migrations/0011_auto_20250830_0426.py
Normal file
@ -0,0 +1,28 @@
|
||||
# Generated by Django 3.2.9 on 2025-08-29 19:26
|
||||
|
||||
import django.contrib.gis.db.models.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rog', '0010_add_missing_fields_to_location2025'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
# Location2025 field changes only - removing non-existent GpsCheckin operations
|
||||
migrations.RemoveField(
|
||||
model_name='location2025',
|
||||
name='cp_point',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='location2025',
|
||||
name='photo_point',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='location2025',
|
||||
name='checkin_point',
|
||||
field=models.IntegerField(default=10, verbose_name='チェックイン得点'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user