lib/rails/commands/db/system/change/change_command.rb



# frozen_string_literal: true

require "rails/generators"
require "rails/generators/rails/db/system/change/change_generator"

module Rails
  module Command
    module Db
      module System
        class ChangeCommand < Base # :nodoc:
          class_option :to, desc: "The database system to switch to."

          def initialize(positional_args, option_args, *)
            @argv = positional_args + option_args
            super
          end

          def perform
            Rails::Generators::Db::System::ChangeGenerator.start(@argv)
          end
        end
      end
    end
  end
end