Class: ActiveRecord::MigrationProxy
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb
Overview
MigrationProxy is used to defer loading of the actual migration classes until they are needed
Instance Attribute Summary collapse
-
#filename ⇒ Object
Returns the value of attribute filename.
-
#name ⇒ Object
Returns the value of attribute name.
-
#scope ⇒ Object
Returns the value of attribute scope.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
- #basename ⇒ Object
-
#initialize(name, version, filename, scope) ⇒ MigrationProxy
constructor
A new instance of MigrationProxy.
Methods inherited from Struct
Constructor Details
#initialize(name, version, filename, scope) ⇒ MigrationProxy
Returns a new instance of MigrationProxy.
1037 1038 1039 1040 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb', line 1037 def initialize(name, version, filename, scope) super @migration = nil end |
Instance Attribute Details
#filename ⇒ Object
Returns the value of attribute filename
1036 1037 1038 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb', line 1036 def filename @filename end |
#name ⇒ Object
Returns the value of attribute name
1036 1037 1038 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb', line 1036 def name @name end |
#scope ⇒ Object
Returns the value of attribute scope
1036 1037 1038 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb', line 1036 def scope @scope end |
#version ⇒ Object
Returns the value of attribute version
1036 1037 1038 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/migration.rb', line 1036 def version @version end |