Class: ActiveRecord::Migration::Compatibility::V6_0
- Inherits:
-
V6_1
- Object
- ActiveRecord::Migration::Compatibility::V6_0
show all
- Defined in:
- lib/active_record/migration/compatibility.rb
Direct Known Subclasses
V5_2
Defined Under Namespace
Modules: TableDefinition
Classes: ReferenceDefinition
Instance Method Summary
collapse
Instance Method Details
#add_reference(table_name, ref_name, **options) ⇒ Object
Also known as:
add_belongs_to
58
59
60
61
|
# File 'lib/active_record/migration/compatibility.rb', line 58
def add_reference(table_name, ref_name, **options)
ReferenceDefinition.new(ref_name, **options)
.add_to(connection.update_table_definition(table_name, self))
end
|
#change_table(table_name, **options) ⇒ Object
42
43
44
45
46
47
48
|
# File 'lib/active_record/migration/compatibility.rb', line 42
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
50
51
52
53
54
55
56
|
# File 'lib/active_record/migration/compatibility.rb', line 50
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
34
35
36
37
38
39
40
|
# File 'lib/active_record/migration/compatibility.rb', line 34
def create_table(table_name, **options)
if block_given?
super { |t| yield compatible_table_definition(t) }
else
super
end
end
|