Creating Correct Migrations
Learn how to create correct migrations in our Rails application.
We'll cover the following...
Crafting and ensuring the desired database schema
Writing migrations is how we programmatically modify the database to conform to the physical schema we want to use. Because Rails’ API for doing this is not SQL, it’s important that we take some time to make sure the migrations we write ...