Sha256: 49c510b289ce678fed188678759c6e62d0f037b5e819a2b52b2c2885e8e9ee9c
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true module Hanami module CLI module Commands module App module DB # @api private class Drop < DB::Command desc "Delete databases" option :gateway, required: false, desc: "Use database for gateway" def call(app: false, slice: nil, gateway: nil, **) exit_codes = [] databases(app: app, slice: slice, gateway: gateway).each do |database| result = database.exec_drop_command exit_codes << result.exit_code if result.respond_to?(:exit_code) if result == true || result.successful? out.puts "=> database #{database.name} dropped" else out.puts "=> failed to drop database #{database.name}" out.puts "#{result.err}\n" end end exit_codes.each do |code| break exit code if code > 0 end end end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hanami-cli-2.2.0.beta2 | lib/hanami/cli/commands/app/db/drop.rb |