Skip to content

Commit

Permalink
Remove django_extensions from MAIN existing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhwaniartefact committed Aug 11, 2023
1 parent 799e271 commit 6e591d4
Show file tree
Hide file tree
Showing 11 changed files with 143 additions and 70 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import uuid

import main.models
from django.db import migrations
from django.db import models
Expand All @@ -13,13 +15,14 @@ class Migration(migrations.Migration):
fields=[
(
"id",
main.models.UUIDPkField(
main.models.UUIDField(
primary_key=True,
db_column="pk",
serialize=False,
editable=False,
max_length=36,
blank=True,
default=uuid.uuid4,
),
),
("host", models.CharField(max_length=50)),
Expand Down Expand Up @@ -51,13 +54,14 @@ class Migration(migrations.Migration):
fields=[
(
"id",
main.models.UUIDPkField(
main.models.UUIDField(
primary_key=True,
db_column="pk",
serialize=False,
editable=False,
max_length=36,
blank=True,
default=uuid.uuid4,
),
),
("dictname", models.CharField(max_length=50)),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import uuid

import main.models
from django.db import migrations
from django.db import models
Expand All @@ -22,13 +24,14 @@ class Migration(migrations.Migration):
fields=[
(
"id",
main.models.UUIDPkField(
main.models.UUIDField(
primary_key=True,
db_column="pk",
serialize=False,
editable=False,
max_length=36,
blank=True,
default=uuid.uuid4,
),
),
(
Expand Down
Loading

0 comments on commit 6e591d4

Please sign in to comment.