should be able to accomplish a variety of things, from actual helpful facts to quotes to fortune commands
19 lines
382 B
Python
19 lines
382 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('facts', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='factcategory',
|
|
options={'verbose_name_plural': 'fact categories'},
|
|
),
|
|
]
|