Skip to content

Commit d346e4e

Browse files
authored
Rename (#4)
1 parent 6b422ea commit d346e4e

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

mongo_migrations/admin/0001_initial.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import django.contrib.admin.models
44
import django.db.models.deletion
55
import django.utils.timezone
6-
import django_mongodb.fields.auto
6+
import django_mongodb_backend.fields.auto
77
from django.conf import settings
88
from django.db import migrations, models
99

@@ -21,7 +21,7 @@ class Migration(migrations.Migration):
2121
migrations.CreateModel(
2222
name='LogEntry',
2323
fields=[
24-
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
24+
('id', django_mongodb_backend.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

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import django.contrib.auth.validators
55
import django.db.models.deletion
66
import django.utils.timezone
7-
import django_mongodb.fields.auto
7+
import django_mongodb_backend.fields.auto
88
from django.db import migrations, models
99

1010

@@ -20,7 +20,7 @@ class Migration(migrations.Migration):
2020
migrations.CreateModel(
2121
name='Permission',
2222
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')),
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.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')),
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.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')),
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Generated by Django 5.0.9 on 2024-10-04 20:15
22

33
import django.contrib.contenttypes.models
4-
import django_mongodb.fields.auto
4+
import django_mongodb_backend.fields.auto
55
from django.db import migrations, models
66

77

@@ -16,7 +16,7 @@ class Migration(migrations.Migration):
1616
migrations.CreateModel(
1717
name='ContentType',
1818
fields=[
19-
('id', django_mongodb.fields.ObjectIdAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
19+
('id', django_mongodb_backend.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
],

project_name/apps.py-tpl

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ from django.contrib.contenttypes.apps import ContentTypesConfig
44

55

66
class MongoAdminConfig(AdminConfig):
7-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
7+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"
88

99

1010
class MongoAuthConfig(AuthConfig):
11-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
11+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"
1212

1313

1414
class MongoContentTypesConfig(ContentTypesConfig):
15-
default_auto_field = "django_mongodb.fields.ObjectIdAutoField"
15+
default_auto_field = "django_mongodb_backend.fields.ObjectIdAutoField"

project_name/settings.py-tpl

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For the full list of settings and their values, see
1010
https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
1111
"""
1212

13-
import django_mongodb
13+
import django_mongodb_backend
1414

1515
from pathlib import Path
1616

@@ -75,8 +75,9 @@ WSGI_APPLICATION = '{{ project_name }}.wsgi.application'
7575
# Database
7676
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases
7777

78-
DATABASES = {}
79-
DATABASES["default"] = django_mongodb.parse_uri("mongodb://localhost:27017/{{ project_name }}")
78+
DATABASES = {
79+
"default": django_mongodb_backend.parse_uri("mongodb://localhost:27017/{{ project_name }}"),
80+
}
8081

8182
# Password validation
8283
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#auth-password-validators
@@ -117,7 +118,7 @@ STATIC_URL = 'static/'
117118
# Default primary key field type
118119
# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#default-auto-field
119120

120-
DEFAULT_AUTO_FIELD = 'django_mongodb.fields.ObjectIdAutoField'
121+
DEFAULT_AUTO_FIELD = 'django_mongodb_backend.fields.ObjectIdAutoField'
121122

122123
MIGRATION_MODULES = {
123124
'admin': 'mongo_migrations.admin',

0 commit comments

Comments
 (0)