removed skype_public column from users #34
Reference in New Issue
Block a user
Delete Branch "skype"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Might I ask why it's shortening the thread character limit to 65536 and the title character limit to 191?
Whenever the database is migrated, rails adds those values. It's a big pain to undo them every time, so when I am not adding features regularly anymore, I'll change it to the way it was.
The change from 255 to 191 is because we're using
utf8mb4. MySQL reserves a certain amount of bytes, but the limit is given in characters, where191 chars* 4 bytes <= 255 chars * 3 bytes.The 65536 limit on a
TEXTconfuses me though, it shouldn't do that.