dr.botzo/dr_botzo/karma/migrations/0002_auto_20150519_2156.py
Brian S. Stephan 062348ef99 karma: app for managing karma, aka ++s and --s
this is a djangoification of the old (really old, actually) karma stuff
written by mike bloy. functionality should be the same, and might be a
bit faster through the ORM now
2015-05-19 21:57:01 -05:00

19 lines
385 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('karma', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='karmalogentry',
options={'verbose_name_plural': 'karma log entries'},
),
]