Sha256: e41e9bb424885b9282634dd30bb6c5944918d8c9ea3f8ab15bd07d3ae1660515
Contents?: true
Size: 595 Bytes
Versions: 77
Compression:
Stored size: 595 Bytes
Contents
# 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
Version data entries
77 entries across 72 versions & 7 rubygems