Exception: ActiveRecord::IllegalMigrationNameError

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(name = nil) ⇒ IllegalMigrationNameError

Returns a new instance of IllegalMigrationNameError.



124
125
126
127
128
129
130
# File 'activerecord/lib/active_record/migration.rb', line 124

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