Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Generated by Django 4.1.5 on 2023-02-13 13:42
import django.contrib.postgres.fields
from django.db import migrations, models
import django.db.models.deletion
import taggit.managers
import utilities.json
class Migration(migrations.Migration):
initial = True
dependencies = [
('extras', '0084_staging'),
('ipam', '0063_standardize_description_comments'),
]
operations = [
migrations.CreateModel(
name='Mapping',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False)),
('created', models.DateTimeField(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=utilities.json.CustomFieldJSONEncoder)),
('source', models.CharField(blank=True, max_length=120)),
('target', models.CharField(blank=True, max_length=120)),
('authentication', models.CharField(max_length=30)),
('testingpage', models.CharField(max_length=120)),
('webdav', models.BooleanField(default=False)),
('Comment', models.CharField(blank=True, max_length=500)),
('tags', taggit.managers.TaggableManager(through='extras.TaggedItem', to='extras.Tag')),
],
options={
'ordering': ('source'),
},
),
]