4
4
import django .contrib .auth .validators
5
5
import django .db .models .deletion
6
6
import django .utils .timezone
7
- import django_mongodb .fields .auto
7
+ import django_mongodb_backend .fields .auto
8
8
from django .db import migrations , models
9
9
10
10
@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
20
20
migrations .CreateModel (
21
21
name = 'Permission' ,
22
22
fields = [
23
- ('id' , django_mongodb .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
23
+ ('id' , django_mongodb_backend .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
24
24
('name' , models .CharField (max_length = 255 , verbose_name = 'name' )),
25
25
('codename' , models .CharField (max_length = 100 , verbose_name = 'codename' )),
26
26
('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):
38
38
migrations .CreateModel (
39
39
name = 'Group' ,
40
40
fields = [
41
- ('id' , django_mongodb .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
41
+ ('id' , django_mongodb_backend .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
42
42
('name' , models .CharField (max_length = 150 , unique = True , verbose_name = 'name' )),
43
43
('permissions' , models .ManyToManyField (blank = True , to = 'auth.permission' , verbose_name = 'permissions' )),
44
44
],
@@ -53,7 +53,7 @@ class Migration(migrations.Migration):
53
53
migrations .CreateModel (
54
54
name = 'User' ,
55
55
fields = [
56
- ('id' , django_mongodb .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
56
+ ('id' , django_mongodb_backend .fields .ObjectIdAutoField (auto_created = True , primary_key = True , serialize = False , verbose_name = 'ID' )),
57
57
('password' , models .CharField (max_length = 128 , verbose_name = 'password' )),
58
58
('last_login' , models .DateTimeField (blank = True , null = True , verbose_name = 'last login' )),
59
59
('is_superuser' , models .BooleanField (default = False , help_text = 'Designates that this user has all permissions without explicitly assigning them.' , verbose_name = 'superuser status' )),
0 commit comments