22 lines
513 B
Python
22 lines
513 B
Python
# Generated by Django 5.0.3 on 2025-01-29 04:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("pxy_meta_pages", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="facebookpageassistant",
|
|
name="is_subscribed",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Indicates if the page is subscribed to webhooks",
|
|
),
|
|
),
|
|
]
|