Sha256: 5b60062c9db38b0190568c2b19115a597af2d63bba2562dcf096e918b5c4bb0e
Contents?: true
Size: 637 Bytes
Versions: 5
Compression:
Stored size: 637 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
5 entries across 5 versions & 1 rubygems