Advertisement
Guest User

Untitled

a guest
Jan 15th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. default: &default
  2. adapter: mysql2
  3. encoding: utf8
  4. pool: 5
  5. username: username_example
  6. password: password_example
  7. host: localhost
  8. socket: /tmp/mysql.sock
  9.  
  10. development:
  11. <<: *default
  12. database: databasename
  13.  
  14. gem 'mysql2'
  15. gem 'activerecord-mysql2-adapter'
  16.  
  17. ActiveRecord::Schema.define(version: 0) do
  18.  
  19. # Could not dump table "tablename" because of following NoMethodError
  20. # undefined method `type' for "text":String
  21.  
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement