summaryrefslogtreecommitdiff
path: root/db/migrate/20120906132947_create_tutorials.rb
blob: 3ef691ae8f08a0c3b99a4fe933f4ed32c3885e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateTutorials < ActiveRecord::Migration
  def change
    create_table :tutorials do |t|
      t.string :heading
      t.text :description
      t.string :url
      t.integer :user_id

      t.timestamps
    end
  end
end