diff options
-rw-r--r-- | mediagoblin/db/sql/models.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mediagoblin/db/sql/models.py b/mediagoblin/db/sql/models.py index 8ae32c63..dbc9ca05 100644 --- a/mediagoblin/db/sql/models.py +++ b/mediagoblin/db/sql/models.py @@ -172,6 +172,10 @@ class MediaEntry(Base, MediaEntryMixin): # TODO: Replace with proper code to read the correct table return {} + def media_data_init(self, **kwargs): + # TODO: Implement this + pass + class MediaFile(Base): """ |