Exception: ClickHouse::MigrationSupport::Errors::DuplicateMigrationNameError

Inherits:
Base
  • Object
show all
Defined in:
lib/click_house/migration_support/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(name = nil) ⇒ DuplicateMigrationNameError

Returns a new instance of DuplicateMigrationNameError.



37
38
39
40
41
42
43
# File 'lib/click_house/migration_support/errors.rb', line 37

def initialize(name = nil)
  if name
    super("Multiple migrations have the name #{name}.")
  else
    super('Duplicate migration name.')
  end
end