Fix activity feed - #1779
Conversation
There was a problem hiding this comment.
But this will not remove the column currently.
There was a problem hiding this comment.
I know, I made a note of it in the PR description. How does one remove columns with xorm?
There was a problem hiding this comment.
Not the best at xorm but you could still execute sql and pass a ALTER TABLE command
|
This will also drop #1744 |
|
It will be more easy/clean to remove : and simply use |
|
@sapk Updated the migration, and took your suggestion about the fields for the |
|
Build timed out 😢 |
|
You could easely restart the build by doing a git commit --amend and pushing (with -f) the new commit ;-). |
|
Rebased onto master to retrigger build |
Preserve actions after user/repo name change
|
LGTM |
|
LGTM |
Preserve actions after user/repo name change. Fixes #1730.
Essentially removes the
act_user_name,repo_user_name, andrepo_namecolumns from theactiontable (which can become stale when a user/repo changes name). There's really no point in having theact_user_namecolumn, since you have the load the user for the avatar link anyways.NOTE: I'm having some trouble getting the migration to work; if anyone knows how to drop columns with xorm, please help me out.