feat: Convert user_id field from Int64 to UInt64

Close #12
This commit is contained in:
Fahad Khalid 2024-01-23 13:49:04 +05:00 committed by GitHub
parent 216f696774
commit 6c7972c7e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
- 💥[Improvement] Convert `events.user_id` and `video_events.user_id` fields from Int64 to UInt64. (by @FahadKhalid210)

View File

@ -0,0 +1,5 @@
ALTER TABLE events
MODIFY COLUMN user_id UInt64;
ALTER TABLE video_events
MODIFY COLUMN user_id UInt64;