Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. ActiveRecord::ConcurrentMigrationError:
  2.  
  3. Cannot run migrations because another migration process is currently running.
  4.  
  5. richiethomas=# c re_app_development
  6. psql (9.6.11, server 11.2)
  7. WARNING: psql major version 9.6, server major version 11.
  8. Some psql features might not work.
  9. You are now connected to database "re_app_development" as user "richiethomas".
  10.  
  11. re_app_development=# SELECT DISTINCT age(now(), query_start) AS age, pg_stat_activity.pid,pg_locks.granted,pg_stat_activity.application_name,pg_stat_activity.backend_start, pg_stat_activity.xact_start, pg_stat_activity.state_change, pg_stat_activity.waiting, pg_stat_activity.state, pg_stat_activity.query_start, left(pg_stat_activity.query, 60)
  12. re_app_development-# FROM pg_stat_activity, pg_locks
  13. re_app_development-# WHERE pg_locks.pid = pg_stat_activity.pid
  14. re_app_development-#
  15.  
  16. re_app_development-# dt
  17. List of relations
  18. Schema | Name | Type | Owner
  19. --------+------------------------+-------+--------------
  20. public | ar_internal_metadata | table | richiethomas
  21. public | flipper_features | table | richiethomas
  22. public | flipper_gates | table | richiethomas
  23. public | schema_migrations | table | richiethomas
  24.  
  25. public | reports | table | richiethomas
  26. public | users | table | richiethomas
  27. public | categories | table | richiethomas
  28. public | responses | table | richiethomas
  29. public | zip_code_hpis | table | richiethomas
  30. public | zip_codes | table | richiethomas
  31. (13 rows)
  32.  
  33. WARNING: psql major version 9.6, server major version 11.
  34. Some psql features might not work.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement