Updates Development

Component ID

2537320

Component name

Updates Development

Component type

module

Maintenance status

Development status

Component security advisory coverage

not-covered

Component created

Component changed

Component body

When you are developing new module or some migration stuff, you will probably need to work with update hooks. Drupal core functionality allows to execute each update hook only once (and it should be like that). But some times you need to fix something and try to execute update hook again, in that case you will probably go to DB and update schema version or increase update hook number in the module. In first case it's not a problem, but takes time. In second case it potentialy may bring problems with update numbers, since it's not hard to forget to update hook number back before commit.

That module is created to solve such probelms for developers. Curently only drush implementation is done.