class Sequel::IllegalMigrationNameError

Public Class Methods

new(name) click to toggle source
Calls superclass method
# File lib/generators/sequel/migration/migration_generator.rb, line 5
def initialize(name)
  super("Illegal name for migration file: #{name} (only lower case letters, numbers, and '_' allowed)")
end