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
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