Change type of IDs in database from String to u64
#10
Notifications
Due Date
No due date set.
Blocks
#9 feat: add a channel as a logging channel
phundrak/p4bl0t
Reference: phundrak/p4bl0t#10
Reference in New Issue
Block a user
Delete Branch "%!s()"
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?
While SQLite does not support
u64types in its schema, it does supporti64integers asINTEGERtypes. Usingasin Rust to convert betweenu64andi64integers is no-op and would allow storing Discord IDs as numeric values instead of strings.Implemented in #9