mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-03-16 22:40:24 +00:00
Added migration for changed field defaults on Connection.connection_id.
This commit is contained in:
parent
04ef1ab8a0
commit
7c54f4c324
1 changed files with 20 additions and 0 deletions
20
dddp/migrations/0009_auto_20150812_0856.py
Normal file
20
dddp/migrations/0009_auto_20150812_0856.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
import dddp.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dddp', '0008_remove_subscription_publication_class'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='connection',
|
||||
name='connection_id',
|
||||
field=dddp.models.AleaIdField(max_length=17, verbose_name=b'Alea ID'),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue