No. The group your user belongs to is irrelevant if the file or directory is already owned by your user. The group permissions are for the other members of the group which owns the file or directory.
I’ve written an elaborate tutorial about permissions, and I recommend reading it.
Difficulty: ★★★☆☆ Note: This post is meant as a tutorial. Please do not post on this thread regarding any problems you’re having with permissions, but start a new thread instead. Thank you.PREAMBLE: THE HISTORICAL BACKGROUND If you are new to the world of GNU/Linux ─ and especially if you come from the Microsoft Windows ecosystem ─ then you will undoubtedly have already noticed that GNU/Linux handles permissions and storage volumes quite differently from what you might be used to …

discard
in fstab to discard blocks every time system is booted is not needed
The discard
mount option has nothing to do with when the system is booted. The discard
mount option tells the device to issue a discard operation every time a block is changed on disk.
Not only does this slow down the writing if the underlying device does not support a queued trim, but the instruction may actually be ignored by the device if the amount of cells that would be cleared isn’t big enough.
Therefore, running a weekly trim by way of fstrim.timer
is still the recommended way.