* 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>
9 lines
226 B
Ruby
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
|