Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. config :phoenix_backend, PhoenixBackend.Repo,
  2. adapter: Ecto.Adapters.Postgres,
  3. username: "postgres",
  4. password: "postgres",
  5. database: "phoenix_backend_dev",
  6. hostname: "localhost",
  7. pool_size: 10
  8.  
  9. config :phoenix_backend, PhoenixBackend.SearchRepo,
  10. adapter: Ecto.Adapters.Postgres,
  11. username: "postgres",
  12. password: "postgres",
  13. database: "phoenix_backend_search_dev",
  14. hostname: "localhost",
  15. pool_size: 10
  16.  
  17. defmodule PhoenixBackend.Repo.Migrations.CreateUserRole do
  18.  
  19. defmodule PhoenixBackend.SearchRepo.Migrations.CreateSearch do
  20.  
  21. Could not find migrations directory "priv/search_repo/migrations" for repo PhoenixBackend.SearchRepo.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement