mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
20 lines
400 B
Python
20 lines
400 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('RIGS', '0010_auto_20141105_2219'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='venue',
|
|
name='address',
|
|
field=models.TextField(blank=True, null=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|