28 lines
801 B
Python
28 lines
801 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2017-03-25 15:58
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('documents', '0016_auto_20170325_1558'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Reminder',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('date', models.DateTimeField()),
|
|
('note', models.TextField(blank=True)),
|
|
('document', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='documents.Document')),
|
|
],
|
|
),
|
|
]
|