java - Can Flyway coeexist with unmanaged database objects? -
does flyway have manage objects in database schema? or permissible have objects dropped/recreated outside of flyway system, example tables containing lookups generated , populated separately?
as long unmanaged db objects not connected managed ones, (technically) not problem.
if connected each other, have problems in scenarios:
- setting new database flyway scratch won't work because flyway migration cannot intercepted other unmanaged scripts.
- if unmanaged objects not compatible @ time, break flyway migration @ point.
in case, if start using unmanaged db scripts, won't have reproducible migration path database anymore, 1 of key features of flyway.
Comments
Post a Comment