Class: MigrationPlan
- Inherits:
-
ApplicationRecord
- Object
- ActiveRecord::Base
- ApplicationRecord
- MigrationPlan
- Defined in:
- app/models/migration_plan.rb
Instance Method Summary collapse
-
#can_be_deleted? ⇒ Boolean
Instance methods.
- #last_execution ⇒ Object
Instance Method Details
#can_be_deleted? ⇒ Boolean
Instance methods
16 17 18 |
# File 'app/models/migration_plan.rb', line 16 def can_be_deleted? migration_executions.empty? end |
#last_execution ⇒ Object
20 21 22 |
# File 'app/models/migration_plan.rb', line 20 def last_execution migration_executions.recent.first end |