Details

    • Type: Improvement
    • Status: Closed
    • Priority: Major
    • Resolution: Fixed
    • Affects Version/s: None
    • Fix Version/s: 5.0.0
    • Component/s: None
    • Labels:
      None

      Description

      We had a beta tester encounter an issue on upgrade where they had records in the `plugin_actions` table with no matching record in the `plugins` table. The migration still attempted to convert these actions but was unable to do so. We use a left join:

                  leftJoin('plugins', 'plugins.id', '=', 'plugin_actions.plugin_id', false)->
      

      which allows these records to be considered. Instead we should use an inner join

                  innerJoin('plugins', 'plugins.id', '=', 'plugin_actions.plugin_id', false)->
      

      so they will be ignored.

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            jonathan Jonathan Reissmueller
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              13/Jan/21

              Time Tracking

              Estimated:
              Original Estimate - Not Specified
              Not Specified
              Remaining:
              Remaining Estimate - 0 minutes
              0m
              Logged:
              Time Spent - 7 minutes
              7m

                Agile