Class: CreateAbChoices
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateAbChoices
- Defined in:
- lib/rails/generators/a_b_tester/templates/create_ab_choices.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'lib/rails/generators/a_b_tester/templates/create_ab_choices.rb', line 12 def self.down drop_table :ab_choices end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 |
# File 'lib/rails/generators/a_b_tester/templates/create_ab_choices.rb', line 2 def self.up create_table :ab_choices do |t| t.string :identity_hash t.boolean :success, :default => false t.string :choice t.datetime :succeeded_at t. end end |