2016-08-01 14:36:16 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2016-08-10 11:52:57 +00:00
|
|
|
('counter', '0001_initial'),
|
|
|
|
('core', '0001_initial'),
|
|
|
|
('subscription', '0001_initial'),
|
2016-08-01 14:36:16 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='counter',
|
|
|
|
name='sellers',
|
|
|
|
field=models.ManyToManyField(verbose_name='sellers', to='subscription.Subscriber', related_name='counters', blank=True),
|
|
|
|
),
|
2016-08-10 11:52:57 +00:00
|
|
|
migrations.AddField(
|
|
|
|
model_name='counter',
|
|
|
|
name='view_groups',
|
|
|
|
field=models.ManyToManyField(to='core.Group', related_name='viewable_counters', blank=True),
|
|
|
|
),
|
2016-08-01 14:36:16 +00:00
|
|
|
]
|