Improve add_column documentation
What does this MR do and why?
This MR updates our database documentation to leverage if_not_exists
instead of using column_exists?.
- add_column(:users, :updated_at, :datetime) unless column_exists?(:users, :updated_at)
+ add_column(:users, :updated_at, :datetime, if_not_exists: true)