blob: 25f5e4eb17785dcf7dd8b98f6db3e579191e2d84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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',
),
]
|