1. 06 7月, 2017 3 次提交
  2. 15 6月, 2017 1 次提交
  3. 13 6月, 2017 1 次提交
  4. 07 6月, 2017 2 次提交
  5. 31 5月, 2017 1 次提交
  6. 29 5月, 2017 1 次提交
  7. 29 4月, 2017 2 次提交
  8. 06 4月, 2017 1 次提交
  9. 08 3月, 2017 1 次提交
  10. 01 3月, 2017 1 次提交
  11. 11 2月, 2017 1 次提交
    • Y
      Enforce use of add_concurrent_foreign_key · 766060bc
      Yorick Peterse 提交于
      This adds a Rubocop rule to enforce the use of
      add_concurrent_foreign_key instead of the regular add_foreign_key
      method. This cop has been disabled for existing migrations so we don't
      need to change those.
      766060bc
  12. 10 2月, 2017 1 次提交
  13. 09 2月, 2017 2 次提交
  14. 31 1月, 2017 1 次提交
  15. 29 6月, 2016 1 次提交
    • Y
      Added RuboCop cops for checking DB migrations · c740445a
      Yorick Peterse 提交于
      There are currently two cops for this:
      
      * Migration/AddIndex: checks if indexes are added concurrently
      * Migration/ColumnWithDefault: checks if columns with default values are
        added in a concurrent manner
      
      Both cops are fairly simple and make no attempt at correcting the code
      as this is quite hard to do (e.g. modifications may need to be applied
      in various places in the same file). They however should provide enough
      to catch people ignoring the comments in generated migrations telling
      them to use add_concurrent_index or add_column_with_default.
      c740445a