diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-04-15 13:51:27 -0400 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2014-04-21 12:11:11 -0400 |
commit | 9f3dc83a6cec48379972b1f99f955b9525e77c32 (patch) | |
tree | 53eb7febd3de6ba808ee5fc3dba8ed8133ee999e /mediagoblin/db/models.py | |
parent | ecea4847e8259125dec4617c6f11c7d7e3962925 (diff) | |
download | mediagoblin-9f3dc83a6cec48379972b1f99f955b9525e77c32.tar.lz mediagoblin-9f3dc83a6cec48379972b1f99f955b9525e77c32.tar.xz mediagoblin-9f3dc83a6cec48379972b1f99f955b9525e77c32.zip |
Moved the metadata column to MediaEntry rather than MediaFile
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 ac69d040..7c0f0bf3 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -264,6 +264,7 @@ class MediaEntry(Base, MediaEntryMixin): cascade="all, delete-orphan" ) collections = association_proxy("collections_helper", "in_collection") + metadata = Column(MutationDict.as_mutable(JSONEncoded)) ## TODO # fail_error @@ -420,7 +421,6 @@ class MediaFile(Base): name_id = Column(SmallInteger, ForeignKey(FileKeynames.id), nullable=False) file_path = Column(PathTupleWithSlashes) file_metadata = Column(MutationDict.as_mutable(JSONEncoded)) - work_metadata = Column(MutationDict.as_mutable(JSONEncoded)) __table_args__ = ( PrimaryKeyConstraint('media_entry', 'name_id'), |