Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Django insists on adding every little thing as a migration
Browse files Browse the repository at this point in the history
  • Loading branch information
danielquinn committed Jan 23, 2016
1 parent 4f1bf81 commit 796e977
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/documents/migrations/0005_auto_20160123_0313.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2016-01-23 03:13
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('documents', '0004_auto_20160114_1844'),
]

operations = [
migrations.AlterModelOptions(
name='sender',
options={'ordering': ('name',)},
),
]

0 comments on commit 796e977

Please sign in to comment.