23 lines
667 B
Python
23 lines
667 B
Python
# Generated migration for adding use_qr_code field to Location model
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rog', '0001_initial'), # 最新のマイグレーションファイル名に合わせてください
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='location',
|
|
name='use_qr_code',
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text='QRコードを使用したインタラクションを有効にする',
|
|
verbose_name='Use QR Code for interaction'
|
|
),
|
|
),
|
|
]
|