May 31, 2023
Elixir Migrations using Ecto
Migrations are most commonly used for database schema changes like creating or changing tables and columns, as they change the data stored in the database. They modify database schemas over time whenever it is necessary to update or revert that database's schema to some newer or older version. Migrations are…