Sha256: 3bbef596edfd8f981616df8b6f44607556241c39fb8f88ac7f35834eedf495f0
Contents?: true
Size: 923 Bytes
Versions: 26
Compression:
Stored size: 923 Bytes
Contents
#dummy migration for testing. #require 'active_record' class CreateImageUploads < ::ActiveRecord::Migration def self.up create_table :image_uploads, :force => true do |t| t.string "filename" t.datetime "created_at" t.datetime "updated_at" t.string "content_type" t.integer "phocoder_job_id" t.integer "phocoder_input_id" t.integer "phocoder_output_id" t.string "phocoder_status" t.integer "zencoder_job_id" t.integer "zencoder_input_id" t.integer "zencoder_output_id" t.string "zencoder_status" t.string "zencoder_url" t.integer "duration_in_ms" t.integer "width" t.integer "height" t.integer "file_size" t.string "thumbnail" t.integer "parent_id" t.string "upload_host" end end def self.down drop_table :image_uploads end end
Version data entries
26 entries across 26 versions & 1 rubygems