mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
Improve weekmail
This commit is contained in:
24
com/migrations/0004_auto_20170107_1222.py
Normal file
24
com/migrations/0004_auto_20170107_1222.py
Normal file
@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('com', '0003_auto_20170103_1341'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='weekmail',
|
||||
name='title',
|
||||
field=models.CharField(verbose_name='title', max_length=64, blank=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='weekmailarticle',
|
||||
name='weekmail',
|
||||
field=models.ForeignKey(related_name='articles', to='com.Weekmail', verbose_name='weekmail', null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user