24 lines
675 B
Python
24 lines
675 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2019-04-25 11:41
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('djangoldp_notification', '0003_auto_20190404_0343'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='notification',
|
|
options={'default_permissions': ('add', 'change', 'delete', 'view', 'control'), 'ordering': ['date']},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='subscription',
|
|
options={'default_permissions': ('add', 'change', 'delete', 'view', 'control')},
|
|
),
|
|
]
|