Sha256: 3ac98299d54a72e5607d57ea91079a28b3abc53f82127fbf603aa159d1a3561f

Contents?: true

Size: 478 Bytes

Versions: 2

Compression:

Stored size: 478 Bytes

Contents

class CreateConductorExperimentWeights < ActiveRecord::Migration
  def change
    create_table "conductor_weighted_experiments", :force => true do |t|
      t.string   "group_name"
      t.string   "alternative"
      t.decimal  "weight",      :precision => 8, :scale => 2
      t.datetime "created_at"
      t.datetime "updated_at"
    end

    add_index "conductor_weighted_experiments", ["group_name"], :name => "index_conductor_weighted_experiments_on_group_name"
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
conductor-0.9.4 db/migrate/20121010173406_create_conductor_experiment_weights.rb
conductor-0.9.3 db/migrate/20121010173406_create_conductor_experiment_weights.rb