Flowdock
method

inherited

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::Migration
inherited(subclass) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/migration.rb, line 525
    def self.inherited(subclass) # :nodoc:
      super
      if subclass.superclass == Migration
        raise StandardError, "Directly inheriting from ActiveRecord::Migration is not supported. "            "Please specify the Rails release the migration was written for:\n"            "\n"            "  class #{subclass} < ActiveRecord::Migration[4.2]"
      end
    end
Register or log in to add new notes.