d83cd58879
TestFlight builds use the production APNs endpoint, direct Xcode builds use sandbox. Store is_sandbox on Device so each token hits the right host.
18 lines
385 B
Python
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),
|
|
),
|
|
]
|