# File lib/camping-abingo.rb, line 933
        def self.up
                ActiveRecord::Schema.define do
                        create_table "abingo_experiments", :force => true do |t|
                          t.string "test_name"
                          t.string "status"
                          t.timestamps
                        end

                        add_index "abingo_experiments", "test_name"
                        #add_index "experiments", "created_on"

                        create_table "abingo_alternatives", :force => true do |t|
                          t.integer :experiment_id
                          t.string :content
                          t.string :lookup, :limit => 32
                          t.integer :weight, :default => 1
                          t.integer :participants, :default => 0
                          t.integer :conversions, :default => 0
                        end

                        add_index "abingo_alternatives", "experiment_id"
                        add_index "abingo_alternatives", "lookup"  #Critical for speed, since we'll primarily be updating by that.
                end
        end