Skip to content
Snippets Groups Projects
  1. Sep 04, 2019
  2. Sep 03, 2019
  3. Sep 02, 2019
  4. Aug 31, 2019
  5. Aug 30, 2019
  6. Aug 29, 2019
  7. Aug 28, 2019
  8. Aug 27, 2019
  9. Aug 26, 2019
  10. Aug 25, 2019
  11. Aug 24, 2019
    • Brett Walker's avatar
      Fix failing spec due to changes UpdateService · 17c312d6
      Brett Walker authored
      for ApplicationSettings
      17c312d6
    • Reuben Pereira's avatar
      Drop existing trigger before creating new one · 599cc499
      Reuben Pereira authored
      - When renaming a column concurrently, drop any existing trigger before
      attempting to create a new one.
      
      When running migration specs multiple times (as it happens during
      local development), the down method of previous migrations are called.
      If any of the called methods contains a call to
      rename_column_concurrently, a trigger will be created and not removed.
      So, the next time a migration spec is run, if the same down method is
      executed again, it will cause an error when attempting to create the
      trigger (since it already exists). Dropping the trigger if it already
      exists will prevent this problem.
      599cc499
Loading