Skip to content

Commit

Permalink
Version 0.8 and initial migration update
Browse files Browse the repository at this point in the history
  • Loading branch information
synw committed Jul 6, 2017
1 parent 64dfc00 commit 2253333
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 29 deletions.
2 changes: 1 addition & 1 deletion mqueue/__init__.py
@@ -1,2 +1,2 @@
__version__ = '0.7'
__version__ = '0.8'
default_app_config = 'mqueue.apps.MqueueConfig'
7 changes: 5 additions & 2 deletions mqueue/migrations/0001_initial.py
@@ -1,10 +1,11 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.10 on 2016-10-14 12:58
# Generated by Django 1.11.1 on 2017-07-05 10:08
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import jsonfield.fields


class Migration(migrations.Migration):
Expand All @@ -29,13 +30,15 @@ class Migration(migrations.Migration):
('date_posted', models.DateTimeField(auto_now_add=True, verbose_name='Date posted')),
('event_class', models.CharField(blank=True, max_length=120, verbose_name='Class')),
('request', models.TextField(blank=True, verbose_name='Request')),
('bucket', models.CharField(blank=True, max_length=60, verbose_name='Bucket')),
('data', jsonfield.fields.JSONField(blank=True, verbose_name='Data')),
('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType', verbose_name='Content type')),
('user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to=settings.AUTH_USER_MODEL, verbose_name='User')),
],
options={
'verbose_name_plural': 'Events',
'ordering': ['-date_posted'],
'verbose_name': 'Event',
'verbose_name_plural': 'Events',
'permissions': (('view_mevent', 'Can see Events'),),
},
),
Expand Down
26 changes: 0 additions & 26 deletions mqueue/migrations/0002_auto_20170702_1105.py

This file was deleted.

0 comments on commit 2253333

Please sign in to comment.