mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-17 17:21:06 +00:00
Add missing migration for Notification model
This commit is contained in:
parent
10a2fe3b9f
commit
b93c75d710
1 changed files with 20 additions and 0 deletions
20
notifications/migrations/0004_auto_20150826_1508.py
Normal file
20
notifications/migrations/0004_auto_20150826_1508.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
import notifications.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('notifications', '0003_notification_data'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='notification',
|
||||
name='timestamp',
|
||||
field=models.DateTimeField(default=notifications.models.now),
|
||||
),
|
||||
]
|
||||
Loading…
Reference in a new issue