diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-11-19 15:14:14 -0500 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-11-19 15:14:14 -0500 |
commit | 9412fffef1fc7d07ff76c1614c56ff8bd0b1ecbc (patch) | |
tree | e5425258f38105f41e35437c7038d3e9a22771ee /mediagoblin/db/models.py | |
parent | 7dfcc538d3a5f9aaedee294d4a870c2676470d68 (diff) | |
download | mediagoblin-9412fffef1fc7d07ff76c1614c56ff8bd0b1ecbc.tar.lz mediagoblin-9412fffef1fc7d07ff76c1614c56ff8bd0b1ecbc.tar.xz mediagoblin-9412fffef1fc7d07ff76c1614c56ff8bd0b1ecbc.zip |
I went through the code and just removed some blank spaces. I also looked it
thru and it looked great.
Diffstat (limited to 'mediagoblin/db/models.py')
-rw-r--r-- | mediagoblin/db/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 079578a2..b750375d 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -219,11 +219,11 @@ class MediaEntry(Base, MediaEntryMixin): state = Column(Unicode, default=u'unprocessed', nullable=False) # or use sqlalchemy.types.Enum? license = Column(Unicode) - file_size = Column(Integer, default=0) fail_error = Column(Unicode) fail_metadata = Column(JSONEncoded) + transcoding_progress = Column(SmallInteger) queued_media_file = Column(PathTupleWithSlashes) |