Sha256: 79a3b3ef7216c549eb23b265a32e1f3c37e217374ff24945ef2eb6c80b718cde
Contents?: true
Size: 636 Bytes
Versions: 10
Compression:
Stored size: 636 Bytes
Contents
## # PostgreSQL [Database] # database PostgreSQL do |db| db.name = "my_database_name" db.username = "my_username" db.password = "my_password" db.host = "localhost" db.port = 5432 db.socket = "/tmp/pg.sock" db.skip_tables = ["skip", "these", "tables"] db.only_tables = ["only", "these" "tables"] db.additional_options = ["-xc", "-E=utf8"] # Optional: Use to set the location of this utility # if it cannot be found by name in your $PATH # db.pg_dump_utility = "/opt/local/bin/pg_dump" end
Version data entries
10 entries across 10 versions & 4 rubygems