mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-13 01:33:21 +00:00
606f1af4d5
Signed-off-by: Skia <skia@libskia.so>
22 lines
597 B
Python
22 lines
597 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
|
('forum', '0004_auto_20170531_1949'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='forumtopic',
|
|
name='subscribed_users',
|
|
field=models.ManyToManyField(verbose_name='subscribed users', related_name='favorite_topics', to=settings.AUTH_USER_MODEL),
|
|
),
|
|
]
|