class CreateContabilidadeAcoesDoSistema < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_acoes_do_sistema do |t|
      t.string :nome, limit: 255
      t.integer :codigo

      t.timestamps null: false
    end
  end
end
