Exception: ActiveRecord::ConcurrentMigrationError
- Inherits:
 - 
      MigrationError
      
        
- Object
 - StandardError
 - ActiveRecordError
 - MigrationError
 - ActiveRecord::ConcurrentMigrationError
 
 
- Defined in:
 - lib/active_record/migration.rb
 
Overview
:nodoc:
Constant Summary collapse
- DEFAULT_MESSAGE =
 "Cannot run migrations because another migration process is currently running."- RELEASE_LOCK_FAILED_MESSAGE =
 "Failed to release advisory lock"
Instance Method Summary collapse
- 
  
    
      #initialize(message = DEFAULT_MESSAGE)  ⇒ ConcurrentMigrationError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ConcurrentMigrationError.
 
Constructor Details
#initialize(message = DEFAULT_MESSAGE) ⇒ ConcurrentMigrationError
Returns a new instance of ConcurrentMigrationError.
      153 154 155  | 
    
      # File 'lib/active_record/migration.rb', line 153 def initialize( = DEFAULT_MESSAGE) super end  |