class CreateBaseGruposDasFontesDeRecursos < ActiveRecord::Migration[4.2]
	def change
		create_table :base_grupos_das_fontes_de_recursos do |t|
			t.string :codigo, limit: 1
			t.string :descricao, limit: 40
			t.integer :modulo_id
      t.string :modulo_type

			t.timestamps null: false
		end
	end
end
