I went through the code and just removed some blank spaces. I also looked it
thru and it looked great.
This commit is contained in:
parent
7dfcc538d3
commit
9412fffef1
@ -713,11 +713,10 @@ def drop_MediaEntry_collected(db):
|
||||
Drop unused MediaEntry.collected column
|
||||
"""
|
||||
metadata = MetaData(bind=db.bind)
|
||||
media_collected= inspect_table(metadata, 'core__media_entries')
|
||||
|
||||
media_collected= inspect_table(metadata, 'core__media_entries')
|
||||
media_collected = media_collected.columns['collected']
|
||||
|
||||
|
||||
media_collected.drop()
|
||||
|
||||
|
||||
db.commit()
|
||||
|
@ -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)
|
||||
|
@ -1,4 +1,4 @@
|
||||
# GNU MediaGobli:n -- federated, autonomous media hosting
|
||||
# GNU MediaGoblin -- federated, autonomous media hosting
|
||||
# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
@ -71,8 +71,6 @@ def add_media_to_collection(collection, media, note=None, commit=True):
|
||||
|
||||
collection.items = collection.items + 1
|
||||
Session.add(collection)
|
||||
|
||||
|
||||
Session.add(media)
|
||||
|
||||
if commit:
|
||||
|
Loading…
x
Reference in New Issue
Block a user