Sha256: 405358440e8e7922893054854fa85ed857db4adff29c80eeff41b27daa7f1dc0
Contents?: true
Size: 471 Bytes
Versions: 2
Compression:
Stored size: 471 Bytes
Contents
class CreateConductorWeightHistories < ActiveRecord::Migration def change create_table "conductor_weight_histories", :force => true do |t| t.string "group_name" t.string "alternative" t.decimal "weight", :precision => 8, :scale => 2 t.datetime "computed_at" t.integer "launch_window" end add_index "conductor_weight_histories", ["computed_at", "group_name"], :name => "conductor_wh_date_and_group_ndx" end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
conductor-0.9.4 | db/migrate/20121010174950_create_conductor_weight_histories.rb |
conductor-0.9.3 | db/migrate/20121010174950_create_conductor_weight_histories.rb |