commit/galaxy-central: natefoo: Commit missing migration script and the new "disk_usage" column on User
1 new changeset in galaxy-central: http://bitbucket.org/galaxy/galaxy-central/changeset/d7a92850893b/ changeset: d7a92850893b user: natefoo date: 2011-06-14 19:17:34 summary: Commit missing migration script and the new "disk_usage" column on User affected #: 2 files (58 bytes) --- a/lib/galaxy/model/mapping.py Tue Jun 14 12:43:42 2011 -0400 +++ b/lib/galaxy/model/mapping.py Tue Jun 14 13:17:34 2011 -0400 @@ -49,7 +49,8 @@ Column( "external", Boolean, default=False ), Column( "form_values_id", Integer, ForeignKey( "form_values.id" ), index=True ), Column( "deleted", Boolean, index=True, default=False ), - Column( "purged", Boolean, index=True, default=False ) ) + Column( "purged", Boolean, index=True, default=False ), + Column( "disk_usage", Numeric( 15, 0 ), index=True ) ) UserAddress.table = Table( "user_address", metadata, Column( "id", Integer, primary_key=True), 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