main
 1class CreateVideos < ActiveRecord::Migration
 2  def change
 3    create_table :videos do |t|
 4      t.string :title
 5      t.text :description
 6      t.string :uri
 7      t.references :user
 8      t.timestamps
 9    end
10  end
11end