Class: ActiveRecord::Migration::Compatibility::V5_2
  
  
  
  
  
    - Inherits:
 
    - 
      V6_0
      
        
          - Object
 
          
            - ActiveRecord::Migration::Compatibility::V5_2
 
          
        
        show all
      
     
  
  
  
  
  
  
  
  
  
  
    - Defined in:
 
    - lib/active_record/migration/compatibility.rb
 
  
  
 
  Direct Known Subclasses
  V5_1
 
Defined Under Namespace
  
    
      Modules: CommandRecorder, TableDefinition
    
  
    
  
  
    
      Instance Method Summary
      collapse
    
    
  
  
    Instance Method Details
    
      
  
  
    #add_timestamps(table_name, **options)  ⇒ Object 
  
  
  
  
    
      
66
67
68
69 
     | 
    
      # File 'lib/active_record/migration/compatibility.rb', line 66
def add_timestamps(table_name, **options)
  options[:precision] ||= nil
  super
end 
     | 
  
 
    
      
  
  
    #change_table(table_name, **options)  ⇒ Object 
  
  
  
  
    
      
50
51
52
53
54
55
56 
     | 
    
      # File 'lib/active_record/migration/compatibility.rb', line 50
def change_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end
     | 
  
 
    
      
  
  
    #create_join_table(table_1, table_2, **options)  ⇒ Object 
  
  
  
  
    
      
58
59
60
61
62
63
64 
     | 
    
      # File 'lib/active_record/migration/compatibility.rb', line 58
def create_join_table(table_1, table_2, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end
     | 
  
 
    
      
  
  
    #create_table(table_name, **options)  ⇒ Object 
  
  
  
  
    
      
42
43
44
45
46
47
48 
     | 
    
      # File 'lib/active_record/migration/compatibility.rb', line 42
def create_table(table_name, **options)
  if block_given?
    super { |t| yield compatible_table_definition(t) }
  else
    super
  end
end
     |