diff options
author | luxagraf <sng@luxagraf.net> | 2016-03-31 09:52:45 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-03-31 09:52:45 -0400 |
commit | e6ea31a213da6306caa0392c8d18c2d0ac0111db (patch) | |
tree | 23a5bdd55c74b975a071f5350dfbc23dac1bbcca /app/src/migrations/0002_auto_20160329_2107.py | |
parent | de69d12ea824450a61a9621a0092739cc1fb6d8b (diff) |
Added migrations for src so I can rename Entry to Post. Changed
syndication file name
Diffstat (limited to 'app/src/migrations/0002_auto_20160329_2107.py')
-rw-r--r-- | app/src/migrations/0002_auto_20160329_2107.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/src/migrations/0002_auto_20160329_2107.py b/app/src/migrations/0002_auto_20160329_2107.py new file mode 100644 index 0000000..25f5e4e --- /dev/null +++ b/app/src/migrations/0002_auto_20160329_2107.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-03-29 21:07 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('src', '0001_initial'), + ] + + operations = [ + migrations.RenameModel( + old_name='Entry', + new_name='Post', + ), + ] |