Files
andros d83cd58879 Add per-device sandbox flag for APNs environment selection
TestFlight builds use the production APNs endpoint, direct Xcode builds
use sandbox. Store is_sandbox on Device so each token hits the right host.
2026-05-19 10:11:32 +02:00

18 lines
385 B
Python

# Generated by Django 6.0.5 on 2026-05-19 08:09
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("subscriptions", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="device",
name="is_sandbox",
field=models.BooleanField(default=False),
),
]