Sha256: 587a51bdfd11b1e3a94421c45b4ec8e2cb94afe36e838cf0b857902dda632e19
Contents?: true
Size: 409 Bytes
Versions: 19
Compression:
Stored size: 409 Bytes
Contents
class CreateRedditorVideoBlocks < ActiveRecord::Migration def change create_table(:redditor_video_blocks) do |t| t.integer "page_id" t.integer "position" t.integer "width" t.integer "height" t.string "youtube" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end add_index :redditor_video_blocks, :page_id end end
Version data entries
19 entries across 19 versions & 1 rubygems