combo/combo/apps/fargo/migrations/0004_recentdocumentscell_fa...

20 lines
471 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('fargo', '0003_recentdocumentscell_last_update_timestamp'),
]
operations = [
migrations.AddField(
model_name='recentdocumentscell',
name='fargo_site',
field=models.CharField(max_length=50, verbose_name='Site', blank=True),
),
]