Sha256: a8ac2765ba0df7ed2924a2e7de2899cc7a9f1b55a9ca2514a0d14fbf8e3537d0
Contents?: true
Size: 726 Bytes
Versions: 86
Compression:
Stored size: 726 Bytes
Contents
## # MySQL [Database] # database MySQL do |db| # To dump all databases, set `db.name = :all` (or leave blank) db.name = "my_database_name" db.username = "my_username" db.password = "my_password" db.host = "localhost" db.port = 3306 db.socket = "/tmp/mysql.sock" # Note: when using `skip_tables` with the `db.name = :all` option, # table names should be prefixed with a database name. # e.g. ["db_name.table_to_skip", ...] db.skip_tables = ["skip", "these", "tables"] db.only_tables = ["only", "these", "tables"] db.additional_options = ["--quick", "--single-transaction"] end
Version data entries
86 entries across 86 versions & 12 rubygems