docbrown/db/migrate/20200222164815_create_field_test_events.rb
Ben Halpern 1dc1723709
Add field test gem to establish a/b testing (#6283) [deploy]
* Initial field test spec work

* Clean up specs

* Fix codeclimage

* Cleanups

* Update names

* Rename and remove need to pass logged in status

* Leadup to prod: two experiments

* Move test logic to controller and add tests

Co-authored-by: Josh Puetz <josh@grorichpuetz.com>
2020-03-03 10:21:29 -05:00

9 lines
226 B
Ruby

class CreateFieldTestEvents < ActiveRecord::Migration[5.2]
def change
create_table :field_test_events do |t|
t.references :field_test_membership
t.string :name
t.timestamp :created_at
end
end
end