mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-07 22:06:05 +01:00
24 lines
661 B
Python
24 lines
661 B
Python
# Generated migration for FTP custom quota fields
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ftp', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='users',
|
|
name='custom_quota_enabled',
|
|
field=models.BooleanField(default=False, help_text='Enable custom quota for this FTP user'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='users',
|
|
name='custom_quota_size',
|
|
field=models.IntegerField(default=0, help_text='Custom quota size in MB (0 = use package default)'),
|
|
),
|
|
]
|