20120315180917_create_pages.rb 251 Bytes
# Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved.
class CreatePages < ActiveRecord::Migration
  def change
    create_table :pages do |t|
      t.string :title
      t.text :text

      t.timestamps
    end
  end
end