diff options
author | Francis Chong <francis@ignition.hk> | 2017-04-26 09:48:12 +0800 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-04-26 03:48:12 +0200 |
commit | 193dddb433f27cc61e1977148cbd01d61bb87fbf (patch) | |
tree | 1e99680980a3c294b5296e79ab9fbc1dafcd0f13 /db/migrate | |
parent | 8fe36654efff73cb9b6800f7d1a57e6466f2ded3 (diff) |
Add media dimensions (#2448)
* Fixes #1985 - add migration AddMediaAttachmentMeta, which add meta field to media_attachments - before saving attachment, set file meta if needed - add meta in api * add spec * align the “size” format for image and video * fix code climate * fixes media_attachment_spec.rb
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20170425131920_add_media_attachment_meta.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20170425131920_add_media_attachment_meta.rb b/db/migrate/20170425131920_add_media_attachment_meta.rb new file mode 100644 index 000000000..c4da65635 --- /dev/null +++ b/db/migrate/20170425131920_add_media_attachment_meta.rb @@ -0,0 +1,5 @@ +class AddMediaAttachmentMeta < ActiveRecord::Migration[5.0] + def change + add_column :media_attachments, :file_meta, :json + end +end |