Initial commit
This commit is contained in:
21
core/migrations/0006_systemsettings_policy_ids.py
Normal file
21
core/migrations/0006_systemsettings_policy_ids.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('core', '0005_systemsettings_captcha_enabled'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='systemsettings',
|
||||
name='default_http_access_log_policy_id',
|
||||
field=models.BigIntegerField(null=True, blank=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='systemsettings',
|
||||
name='default_http_firewall_policy_id',
|
||||
field=models.BigIntegerField(null=True, blank=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user