mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-19 12:43:23 +00:00
21 lines
494 B
Python
21 lines
494 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 = [
|
|
('com', '0003_auto_20161223_1548'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='news',
|
|
name='author',
|
|
field=models.ForeignKey(to=settings.AUTH_USER_MODEL, related_name='owned_news', verbose_name='author'),
|
|
),
|
|
]
|