migrate
migrate copied to clipboard
Use semver directory to carry the schema version
Hi, This PR is an attempt to use semver directory to represent the schema version. The current version scheme is not intuitive and requires additional efforts to keep track of the database version with the application version.
This PR moves the version component from the file name to its containing directory. The name of directory conforms to the semver standard. Currently, this feature is available to the file
source.
In addition, there are two extra fields added to the schema_migrations
table so that we can track when is the schema change applied last time as well as the change identifier w/ semver version number embedded.
Please consider merge this PR or feel free to get back to me for further improvement. Thanks for your attention!