class CreateContabilidadeLiquidacoes < ActiveRecord::Migration[4.2]
	def change
		create_table :contabilidade_liquidacoes do |t|
			t.string :numero, limit: 3
			t.integer :empenho_id
			t.date :data_da_liquidacao
			t.decimal :valor, precision: 12, scale: 2
			t.integer :mes_da_folha
			t.integer :ano_da_folha
			t.string :tipo_da_folha, limit: 2
			t.date :data_de_emissao_da_folha

			t.timestamps null: false
		end
	end
end
