class CreatePpaImpressaoDasReceitas < ActiveRecord::Migration[4.2]
  def change
    create_table :ppa_impressao_das_receitas do |t|
      t.string :titulo, limit: 100
      t.text :texto
      t.attachment :imagem
      t.integer :ordem
	  t.integer :ppa_id
      t.timestamps null: false
    end
  end
end
