Skip to content

Commit

Permalink
Adds missing migration for wrong default values (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Hemeryck authored and Duologic committed Oct 4, 2017
1 parent 0574b53 commit 6213905
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion locking/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.3'
__version__ = '2.0.4'
25 changes: 25 additions & 0 deletions locking/migrations/0002_auto_20171004_1309.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-04 13:09
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('locking', '0001_squashed_0007_auto_20171004_0900'),
]

operations = [
migrations.AlterField(
model_name='nonblockinglock',
name='expires_on',
field=models.DateTimeField(db_index=True, verbose_name='expires on'),
),
migrations.AlterField(
model_name='nonblockinglock',
name='renewed_on',
field=models.DateTimeField(db_index=True, verbose_name='renewed on'),
),
]

0 comments on commit 6213905

Please sign in to comment.