Tracking database changes will be helpful when we develop application with database for storing data. Database migration will help us to track database changes (ex : create table, drop table, add column, remove column, etc ). In this article, we will use golang-migrate for tracking postgres database migration, and try…