Skip to content

Commit a9d53c2

Browse files
committed
Formatting
1 parent c5c3451 commit a9d53c2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

netbox_custom_objects/migrations/0001_initial.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,12 @@ class Migration(migrations.Migration):
9696
migrations.CreateModel(
9797
name="CustomObjectTypeField",
9898
fields=[
99-
("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False)),
99+
(
100+
"id",
101+
models.BigAutoField(
102+
auto_created=True, primary_key=True, serialize=False
103+
),
104+
),
100105
("created", models.DateTimeField(auto_now_add=True, null=True)),
101106
("last_updated", models.DateTimeField(auto_now=True, null=True)),
102107
("type", models.CharField(default="text", max_length=50)),

0 commit comments

Comments
 (0)