20120216215008_create_wikis.rb 198 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 class CreateWikis < ActiveRecord::Migration def change create_table :wikis do |t| t.string :title t.text :content t.integer :project_id t.timestamps end end end