aboutsummaryrefslogtreecommitdiffstats
path: root/src/resource_inventory/migrations/0003_vlan_public.py
blob: 07dc6475d360998f7a18822be3f9f7cc672f0d34 (plain)
1
2
3
4

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* P
# Generated by Django 2.1 on 2018-09-26 14:41

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('resource_inventory', '0002_auto_20180919_1459'),
    ]

    operations = [
        migrations.AddField(
            model_name='vlan',
            name='public',
            field=models.BooleanField(default=False),
        ),
    ]