pg_migrate 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Gemfile.lock +1 -1
- data/lib/pg_migrate/command_line.rb +1 -1
- data/lib/pg_migrate/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
|
@@ -18,7 +18,7 @@ module PgMigrate
|
|
|
18
18
|
|
|
19
19
|
desc "up", "migrates the database forwards, applying migrations found in the source directory"
|
|
20
20
|
method_option :source, :aliases => "-s", :default => nil, :banner => 'input directory', :desc => "a pg_migrate built manifest. Should contain your processed manifest and up|down|test folders"
|
|
21
|
-
method_option :connopts, :aliases => "-c", :type => :hash, :
|
|
21
|
+
method_option :connopts, :aliases => "-c", :type => :hash, :banner => "connection options", :desc => "database connection options used by gem 'pg': dbname|host|hostaddr|port|user|password|connection_timeout|options|sslmode|krbsrvname|gsslib|service"
|
|
22
22
|
method_option :verbose, :aliases => "-v", :type => :boolean, :banner => "verbose", :desc=> "set to raise verbosity"
|
|
23
23
|
|
|
24
24
|
def up
|
data/lib/pg_migrate/version.rb
CHANGED