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