Sha256: 463df3fcfa30c2c23c408ee9862e243d05b0f98ff2f3e276c250f466af1de14d
Contents?: true
Size: 717 Bytes
Versions: 10
Compression:
Stored size: 717 Bytes
Contents
class CreateEncodableJobs < ActiveRecord::Migration def self.up create_table :encodable_jobs do |t| t.string "encodable_type" t.integer "encodable_id" 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.string "tracking_mode" t.timestamps end add_index :encodable_jobs, [:encodable_type, :encodable_id] add_index :encodable_jobs, :id end def self.down drop_table :encodable_jobs end end
Version data entries
10 entries across 10 versions & 1 rubygems