Fixing PLans page
This commit is contained in:
18
backend/migrations/0013_add_plan_is_internal.py
Normal file
18
backend/migrations/0013_add_plan_is_internal.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user