commit/galaxy-central: natefoo: Make the bytes column in the quota table a bigint
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/6ca0a743296b/ changeset: 6ca0a743296b user: natefoo date: 2011-08-17 22:25:34 summary: Make the bytes column in the quota table a bigint affected #: 2 files (6 bytes) --- a/lib/galaxy/model/mapping.py Wed Aug 17 11:15:05 2011 -0400 +++ b/lib/galaxy/model/mapping.py Wed Aug 17 16:25:34 2011 -0400 @@ -217,7 +217,7 @@ Column( "update_time", DateTime, default=now, onupdate=now ), Column( "name", String( 255 ), index=True, unique=True ), Column( "description", TEXT ), - Column( "bytes", Integer ), + Column( "bytes", BigInteger ), Column( "operation", String( 8 ) ), Column( "deleted", Boolean, index=True, default=False ) ) --- a/lib/galaxy/model/migrate/versions/0080_quota_tables.py Wed Aug 17 11:15:05 2011 -0400 +++ b/lib/galaxy/model/migrate/versions/0080_quota_tables.py Wed Aug 17 16:25:34 2011 -0400 @@ -25,7 +25,7 @@ Column( "update_time", DateTime, default=now, onupdate=now ), Column( "name", String( 255 ), index=True, unique=True ), Column( "description", TEXT ), - Column( "bytes", Integer ), + Column( "bytes", BigInteger ), Column( "operation", String( 8 ) ), Column( "deleted", Boolean, index=True, default=False ) ) Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
Bitbucket