Skip to content

Fix `#down` for two protected branches-related migrations.

username-removed-407765 requested to merge fix-add-column-with-default-null into master
  • The migrations called add_column_with_default with a null option, which the Rails add_column method accepts. This fails because add_column_with_default expects an allow_null option instead.

  • The migrations have been fixed to use allow_null.

Merge request reports