mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-09 06:46:10 +01:00
Docker app beta
This commit is contained in:
26
firewall/migrations/0001_initial.py
Normal file
26
firewall/migrations/0001_initial.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2019-01-07 12:43
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='FirewallRules',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(max_length=32, unique=True)),
|
||||
('proto', models.CharField(max_length=10)),
|
||||
('port', models.CharField(max_length=25)),
|
||||
('ipAddress', models.CharField(default=b'0.0.0.0/0', max_length=30)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user