Skip to content

Commit

Permalink
* **Fix:** Fixed alembic revision
Browse files Browse the repository at this point in the history
  • Loading branch information
eoyilmaz committed Nov 15, 2016
1 parent 504ed0f commit 18fdd7e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Expand Up @@ -2,6 +2,11 @@
Stalker Changes
===============

0.2.17.1
========

* **Fix:** Fixed alembic revision

0.2.17
======

Expand Down
Expand Up @@ -22,7 +22,7 @@ def upgrade():
sa.Column('uid', sa.Integer(), nullable=False),
sa.Column(
'action',
sa.Enum('login', 'logout', name='ActionNames'),
sa.Enum('login', 'logout', name='AuthenticationActions'),
nullable=False
),
sa.Column('date', sa.DateTime(), nullable=False),
Expand Down
2 changes: 1 addition & 1 deletion stalker/__init__.py
Expand Up @@ -25,7 +25,7 @@

import sys

__version__ = '0.2.17'
__version__ = '0.2.17.1'


__string_types__ = []
Expand Down
2 changes: 1 addition & 1 deletion stalker/models/auth.py
Expand Up @@ -127,7 +127,7 @@ class Permission(Base):
id = Column(Integer, primary_key=True)
_access = Column('access', Enum('Allow', 'Deny', name='AccessNames'))
_action = Column('action',
Enum(*defaults.actions, name='ActionNames'))
Enum(*defaults.actions, name='AuthenticationActions'))
_class_name = Column('class_name', String(32))

def __init__(self, access, action, class_name):
Expand Down

0 comments on commit 18fdd7e

Please sign in to comment.