summaryrefslogtreecommitdiff
path: root/db/migrate/11_create_info.rb
blob: c7dc516004acd587b62bb2f2c368c84a411ab6a7 (plain)
1
2
3
4
5
6
7
8
class CreateInfo < ActiveRecord::Migration
  def change
    create_table :info do |t|
      t.string :title
      t.text :content
    end
  end
end