django-dbes
django-dbes copied to clipboard
Missing migration
After setting up django-dbes
on a Django 1.11 project for the first time, running migrations for dbes
results in the warning:
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
Running makemigrations
produces the following migration for dbes
:
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-03-05 17:31
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('dbes', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='email',
options={'ordering': ('-creation_date',)},
),
]