Guest User

Untitled

a guest
Aug 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class CreateProfiles < ActiveRecord::Migration
  2. def change
  3. create_table :profiles do |t|
  4. t.string :locations
  5. t.float :distance
  6. t.integer :samples
  7. t.integer :highest
  8. t.integer :lowest
  9. t.text :uri
  10. t.text :array
  11. t.text :path
  12.  
  13. t.timestamps
  14. end
  15. end
  16. end
Add Comment
Please, Sign In to add comment