Guest User

Untitled

a guest
May 27th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class CreateMeasurements < ActiveRecord::Migration
  2. def self.up
  3. create_table :surveys do |t|
  4. t.references :object
  5. t.string :measurement_type
  6. t.integer :integer_data
  7. t.string :string_data
  8. t.datetime :datetime_data
  9. t.timestamps
  10. end
  11.  
  12. add_index :measurements, :object_id
  13. add_index :measurements, :measurement_type
  14. end
  15.  
  16. def self.down
  17. drop_table :measurements
  18. end
  19. end
Add Comment
Please, Sign In to add comment