Change type of IDs in database from String
to u64
#10
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Blocks
#9 feat: add a channel as a logging channel
phundrak/p4bl0t
Reference: phundrak/p4bl0t#10
Loading…
Reference in New Issue
Block a user
No description provided.
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
u64
types in its schema, it does supporti64
integers asINTEGER
types. Usingas
in Rust to convert betweenu64
andi64
integers is no-op and would allow storing Discord IDs as numeric values instead of strings.Implemented in #9