From 193dddb433f27cc61e1977148cbd01d61bb87fbf Mon Sep 17 00:00:00 2001 From: Francis Chong Date: Wed, 26 Apr 2017 09:48:12 +0800 Subject: Add media dimensions (#2448) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 --- db/migrate/20170425131920_add_media_attachment_meta.rb | 5 +++++ db/schema.rb | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 db/migrate/20170425131920_add_media_attachment_meta.rb (limited to 'db') 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 diff --git a/db/schema.rb b/db/schema.rb index 1c728d6d4..cd31eb528 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170424112722) do +ActiveRecord::Schema.define(version: 20170425131920) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -120,6 +120,7 @@ ActiveRecord::Schema.define(version: 20170424112722) do t.datetime "updated_at", null: false t.string "shortcode" t.integer "type", default: 0, null: false + t.json "file_meta" t.index ["shortcode"], name: "index_media_attachments_on_shortcode", unique: true, using: :btree t.index ["status_id"], name: "index_media_attachments_on_status_id", using: :btree end @@ -332,4 +333,4 @@ ActiveRecord::Schema.define(version: 20170424112722) do end add_foreign_key "statuses", "statuses", column: "reblog_of_id", on_delete: :cascade -end +end \ No newline at end of file -- cgit