Skip to content

Commit e64ecb0

Browse files
authored
Update migrations per ObjectIdAutoField.deconstruct() (#2)
See mongodb/django-mongodb-backend@a06efe3
1 parent 1613351 commit e64ecb0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

mongo_migrations/admin/0001_initial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
2121
migrations.CreateModel(
2222
name='LogEntry',
2323
fields=[
24-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
24+
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2525
('action_time', models.DateTimeField(default=django.utils.timezone.now, editable=False, verbose_name='action time')),
2626
('object_id', models.TextField(blank=True, null=True, verbose_name='object id')),
2727
('object_repr', models.CharField(max_length=200, verbose_name='object repr')),

mongo_migrations/auth/0001_initial.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
2020
migrations.CreateModel(
2121
name='Permission',
2222
fields=[
23-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
23+
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2424
('name', models.CharField(max_length=255, verbose_name='name')),
2525
('codename', models.CharField(max_length=100, verbose_name='codename')),
2626
('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.contenttype', verbose_name='content type')),
@@ -38,7 +38,7 @@ class Migration(migrations.Migration):
3838
migrations.CreateModel(
3939
name='Group',
4040
fields=[
41-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
41+
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
4242
('name', models.CharField(max_length=150, unique=True, verbose_name='name')),
4343
('permissions', models.ManyToManyField(blank=True, to='auth.permission', verbose_name='permissions')),
4444
],
@@ -53,7 +53,7 @@ class Migration(migrations.Migration):
5353
migrations.CreateModel(
5454
name='User',
5555
fields=[
56-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
56+
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
5757
('password', models.CharField(max_length=128, verbose_name='password')),
5858
('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')),
5959
('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')),

mongo_migrations/contenttypes/0001_initial.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
1616
migrations.CreateModel(
1717
name='ContentType',
1818
fields=[
19-
('id', django_mongodb.fields.auto.ObjectIdAutoField(auto_created=True, db_column='_id', primary_key=True, serialize=False, verbose_name='ID')),
19+
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2020
('app_label', models.CharField(max_length=100)),
2121
('model', models.CharField(max_length=100, verbose_name='python model class name')),
2222
],

0 commit comments

Comments
 (0)