Sha256: 09c6901c0a49b9a2b4b0d438ad3eb2712380464b44a7945c346027a90f05e610
Contents?: true
Size: 636 Bytes
Versions: 1
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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backup-3.0.21 | templates/cli/utility/database/postgresql |