djangoldp-notification/djangoldp_notification/migrations/0001_initial.py

49 lines
1.7 KiB
Python
Raw Normal View History

2019-01-09 09:27:54 +00:00
# -*- coding: utf-8 -*-
2019-02-28 01:21:03 +00:00
# Generated by Django 1.11 on 2019-02-28 01:14
2019-01-09 09:27:54 +00:00
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
2019-02-28 01:21:03 +00:00
import djangoldp.fields
2019-01-09 09:27:54 +00:00
class Migration(migrations.Migration):
initial = True
dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
]
operations = [
migrations.CreateModel(
name='Notification',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
2019-02-28 01:21:03 +00:00
('author_user', djangoldp.fields.LDPUrlField()),
2019-01-09 09:27:54 +00:00
('object', models.URLField()),
('type', models.CharField(max_length=255)),
('summary', models.TextField()),
('date', models.DateTimeField(auto_now_add=True)),
('read', models.BooleanField()),
2019-01-31 09:44:41 +00:00
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='inbox', to=settings.AUTH_USER_MODEL)),
2019-01-09 09:27:54 +00:00
],
options={
'ordering': ['date'],
'permissions': (('view_notification', 'Read'), ('control_notification', 'Control')),
},
),
2019-01-31 09:44:41 +00:00
migrations.CreateModel(
name='Subscription',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('object', models.URLField()),
('inbox', models.URLField()),
],
options={
'permissions': (('view_notification', 'Read'), ('control_notification', 'Control')),
},
),
2019-01-11 08:09:24 +00:00
]