Sha256: 5e5bc7e37869a0932be3a27e4490a987ae57c78cf583e2569a4e02346cc61ff1
Contents?: true
Size: 617 Bytes
Versions: 15
Compression:
Stored size: 617 Bytes
Contents
# frozen_string_literal: true module Jets 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 require "rails/generators" require "rails/generators/rails/db/system/change/change_generator" Rails::Generators::Db::System::ChangeGenerator.start(@argv) end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems