Rename tags to 'cats', a silly catgirl pun on 'categories'

This commit is contained in:
Danielle McLean 2017-11-20 11:09:30 +11:00
parent 2413a8aa96
commit 3ca2af74bb
Signed by: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
5 changed files with 42 additions and 18 deletions

View file

@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.7 on 2017-11-20 00:08
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('entries', '0010_entry_tags'),
]
operations = [
migrations.RenameModel(
old_name='Tag',
new_name='Cat',
),
migrations.RenameField(
model_name='entry',
old_name='tags',
new_name='cats',
),
]