Guest User

Untitled

a guest
Apr 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. ## Error
  2. ./db/migrate//021_create_representatives.rb:4: syntax error, unexpected '\n', expecting tCOLON2 or '[' or '.'
  3.  
  4. ## Migration
  5. class CreateRepresentatives < ActiveRecord::Migration
  6. def self.up
  7. create_table :representatives do |t|
  8. t.string, :first_name
  9. t.string, :last_name
  10. t.string, :section
  11. t.string, :title
  12. t.string, :email_address
  13. t.integer :district
  14. t.timestamps
  15. end
  16. end
  17.  
  18. def self.down
  19. drop_table :representatives
  20. end
  21. end
Add Comment
Please, Sign In to add comment