Sha256: 42939a2be6845a2544ce2d430a678ea2c51188dfdc8e11f6272005861fea363c

Contents?: true

Size: 313 Bytes

Versions: 5

Compression:

Stored size: 313 Bytes

Contents

class CreateHistorico < ActiveRecord::Migration
  def self.up
    create_table :historico_ativos do |t|
      t.string :nome_arquivo
      t.string :codigo_origem
      t.date :data_geracao
      t.date :data_importacao
      t.timestamps
    end
  end

  def self.down
    drop_table :historico_ativos
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bovespa_ingestion-0.3.2 db/migrate/20111221001450_create_historico.rb
bovespa_ingestion-0.3.1 db/migrate/20111221001450_create_historico.rb
bovespa_ingestion-0.3.0 db/migrate/20111221001450_create_historico.rb
bovespa_ingestion-0.2.0 db/migrate/20111221001450_create_historico.rb
bovespa_ingestion-0.1.0 db/migrate/20111221001450_create_historico.rb