20120816164927_create_tasks.rb 150 Bytes
class CreateTasks < ActiveRecord::Migration
  def change
    create_table :tasks do |t|
      t.string :content

      t.timestamps
    end
  end
end