Sort of works now

This commit is contained in:
Jonathan Cremin 2015-01-17 23:54:26 +00:00
parent 593f3e6d1c
commit 5972323cc1
15 changed files with 453 additions and 6 deletions

View file

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('links', '0003_auto_20150117_2306'),
]
operations = [
migrations.RenameField(
model_name='link',
old_name='link',
new_name='url',
),
]