summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200307103755_fix_moderation_log_subjects.exs
AgeCommit message (Collapse)Author
2022-02-25Copyright bump for 2022Sean King
2020-03-07moderation log: fix improperly migrated datarinpatch
Some of the actions used to have a user map as a subject, which was then changed to an array of user maps. However instead of migrating old data there was just a hack to transform it every time, moreover this hack didn't include all possible actions, which resulted in crashes. This commit fixes the crashes by introducing a proper database migration for old data. Closes #1606