mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
Merge pull request #182 from coddingtonbear/missing-migrations
Missing migrations && test database settings
This commit is contained in:
commit
201f568750
3 changed files with 29 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -12,3 +12,4 @@ dummy_project/*
|
||||||
.cache/
|
.cache/
|
||||||
.tox/
|
.tox/
|
||||||
messages
|
messages
|
||||||
|
*.sqlite3
|
||||||
|
|
|
||||||
27
django_mailbox/migrations/0007_auto_20180421_0026.py
Normal file
27
django_mailbox/migrations/0007_auto_20180421_0026.py
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.7 on 2018-04-21 00:26
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('django_mailbox', '0006_mailbox_last_polling'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='mailbox',
|
||||||
|
options={'verbose_name': 'Mailbox', 'verbose_name_plural': 'Mailboxes'},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='message',
|
||||||
|
options={'verbose_name': 'E-mail message', 'verbose_name_plural': 'E-mail messages'},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='messageattachment',
|
||||||
|
options={'verbose_name': 'Message attachment', 'verbose_name_plural': 'Message attachments'},
|
||||||
|
),
|
||||||
|
]
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
DATABASES = {
|
DATABASES = {
|
||||||
'default': {
|
'default': {
|
||||||
|
'NAME': 'db.sqlite3',
|
||||||
'ENGINE': 'django.db.backends.sqlite3',
|
'ENGINE': 'django.db.backends.sqlite3',
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue