26 lines
749 B
Python
26 lines
749 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-01-29 08:47
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0005_auto_20180124_1725'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='OneClickAction',
|
|
fields=[
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('done', models.BooleanField(default=False)),
|
|
('done_at', models.DateTimeField(blank=True, null=True)),
|
|
],
|
|
),
|
|
]
|