class DbVcs::Adapters::Postgres::Config
Attributes
host[RW]
password[RW]
port[RW]
username[RW]
Public Class Methods
new()
click to toggle source
# File lib/db_vcs/adapters/postgres.rb, line 11 def initialize @host = "localhost" @port = "5432" @username = "postgres" @password = nil end