mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-03 05:04:57 +00:00
18 lines
366 B
Python
18 lines
366 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dddp', '0007_auto_20150505_1302'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='subscription',
|
|
name='publication_class',
|
|
),
|
|
]
|