Sha256: 7b182c1b3f195839f060b998ad7b8b09e560aec38c411b02e7e457fc5adf02f0
Contents?: true
Size: 706 Bytes
Versions: 5
Compression:
Stored size: 706 Bytes
Contents
class CreateAtivos < ActiveRecord::Migration def self.up create_table :ativos do |t| t.date :data t.string :codigo_bdi t.string :codigo t.string :tipo_mercado t.string :nome t.string :especificacao t.string :moeda_referencia t.decimal :preco_abertura t.decimal :preco_maximo t.decimal :preco_minimo t.decimal :preco_medio t.decimal :preco_ultimo t.decimal :preco_melhor_oferta_compra t.decimal :preco_melhor_oferta_venda t.decimal :total_negocios t.decimal :quantidade_titulos_negociados t.decimal :volume_negocios t.timestamps end end def self.down drop_table :ativos end end
Version data entries
5 entries across 5 versions & 1 rubygems