Exception: ActiveRecord::IllegalMigrationNameError

Inherits:
MigrationError show all
Defined in:
lib/active_record/migration.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(name = nil) ⇒ IllegalMigrationNameError

Returns a new instance of IllegalMigrationNameError.



118
119
120
121
122
123
124
# File 'lib/active_record/migration.rb', line 118

def initialize(name = nil)
  if name
    super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed).")
  else
    super("Illegal name for migration.")
  end
end