19 lines
376 B
Python
19 lines
376 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('facts', '0004_fact_time'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='fact',
|
|
name='nickmask',
|
|
field=models.CharField(default='', max_length=200, blank=True),
|
|
),
|
|
]
|