Methods
- A
Instance Public methods
action(name, &block) Link
Defines an action that can resolve the error.
class PendingMigrationError < MigrationError
include ActiveSupport::ActionableError
action "Run pending migrations" do
ActiveRecord::Tasks::DatabaseTasks.migrate
end
end