19 lines
529 B
Python
19 lines
529 B
Python
# Generated manually for adding is_internal flag to Plan model
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('igny8_core', '0012_creditpackage_alter_paymentmethodconfig_options_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='plan',
|
|
name='is_internal',
|
|
field=models.BooleanField(default=False, help_text='Internal-only plan (Free/Internal) - hidden from public plan listings'),
|
|
),
|
|
]
|