Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. data.db (postgresql[daemon]) :: STATEMENT: INSERT INTO "resourcepaths" ("path", "hash") VALUES ($1, $2)
  2. data.db (postgresql[daemon]) :: ERROR: relation "resourcepaths" does not exist at character 13
  3.  
  4. <?php
  5.  
  6. return [
  7. 'driver' => 'pgsql',
  8. 'server' => $_ENV['DATA_DB_HOST'],
  9. 'user' => $_ENV['DATA_DB_USER'],
  10. 'password' => $_ENV['DATA_DB_PASS'],
  11. 'database' => 'gonano',
  12. 'schema' => 'public',
  13. 'tablePrefix' => '',
  14. 'port' => 5432
  15. ];
  16.  
  17. # The database driver that will be used ('mysql' or 'pgsql')
  18. DB_DRIVER="pgsql"
  19.  
  20. # The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
  21. DB_SERVER="localhost"
  22.  
  23. # The database username to connect with
  24. DB_USER="root"
  25.  
  26. # The database password to connect with
  27. DB_PASSWORD=""
  28.  
  29. # The name of the database to select
  30. DB_DATABASE=""
  31.  
  32. # The database schema that will be used (PostgreSQL only)
  33. DB_SCHEMA="public"
  34.  
  35. # The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
  36. DB_TABLE_PREFIX=""
  37.  
  38. # The port to connect to the database with. Will default to 5432 for PostgreSQL and 3306 for MySQL.
  39. DB_PORT=""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement