mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
import django.core.serializers.json
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import taggit.managers
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('dcim', '0136_wireless'),
|
|
('extras', '0062_clear_secrets_changelog'),
|
|
('ipam', '0050_iprange'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='SSID',
|
|
fields=[
|
|
('created', models.DateField(auto_now_add=True, null=True)),
|
|
('last_updated', models.DateTimeField(auto_now=True, null=True)),
|
|
('custom_field_data', models.JSONField(blank=True, default=dict, encoder=django.core.serializers.json.DjangoJSONEncoder)),
|
|
('id', models.BigAutoField(primary_key=True, serialize=False)),
|
|
('name', models.CharField(max_length=32)),
|
|
('description', models.CharField(blank=True, max_length=200)),
|
|
('tags', taggit.managers.TaggableManager(through='extras.TaggedItem', to='extras.Tag')),
|
|
('vlan', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='ipam.vlan')),
|
|
],
|
|
options={
|
|
'verbose_name': 'SSID',
|
|
'verbose_name_plural': 'SSIDs',
|
|
'ordering': ('name', 'pk'),
|
|
},
|
|
),
|
|
]
|