# HG changeset patch # User Marcin Kuzminski # Date 1370951483 -7200 # Node ID 7f71d22a179472a1d947ff0f268cfb09399a5db7 # Parent e0e244e949bc0e579452a4229a31090d65ba1839 Fixed issues with how mysql handles float values. Caused gists with expiration dates not work properly on mysql. diff -r e0e244e949bc -r 7f71d22a1794 rhodecode/__init__.py --- a/rhodecode/__init__.py Sat Jun 08 01:04:49 2013 +0200 +++ b/rhodecode/__init__.py Tue Jun 11 13:51:23 2013 +0200 @@ -26,7 +26,7 @@ import sys import platform -VERSION = (1, 7, 0) +VERSION = (1, 7, 1) BACKENDS = { 'hg': 'Mercurial repository', 'git': 'Git repository', diff -r e0e244e949bc -r 7f71d22a1794 rhodecode/model/db.py --- a/rhodecode/model/db.py Sat Jun 08 01:04:49 2013 +0200 +++ b/rhodecode/model/db.py Tue Jun 11 13:51:23 2013 +0200 @@ -2146,7 +2146,7 @@ gist_access_id = Column('gist_access_id', Unicode(250)) gist_description = Column('gist_description', UnicodeText(1024)) gist_owner = Column('user_id', Integer(), ForeignKey('users.user_id'), nullable=True) - gist_expires = Column('gist_expires', Float(), nullable=False) + gist_expires = Column('gist_expires', Float(53), nullable=False) gist_type = Column('gist_type', Unicode(128), nullable=False) created_on = Column('created_on', DateTime(timezone=False), nullable=False, default=datetime.datetime.now) modified_at = Column('modified_at', DateTime(timezone=False), nullable=False, default=datetime.datetime.now)