Fixing PLans page

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-08 14:12:08 +00:00
parent da3b45d1c7
commit 144e955b92
24 changed files with 1992 additions and 1105 deletions

View 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'),
),
]