Skip to content

Commit

Permalink
feat: Convert user_id field from Int64 to UInt64
Browse files Browse the repository at this point in the history
Close #12
  • Loading branch information
FahadKhalid210 authored Jan 23, 2024
1 parent 216f696 commit 6c7972c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 💥[Improvement] Convert `events.user_id` and `video_events.user_id` fields from Int64 to UInt64. (by @FahadKhalid210)
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ALTER TABLE events
MODIFY COLUMN user_id UInt64;

ALTER TABLE video_events
MODIFY COLUMN user_id UInt64;

0 comments on commit 6c7972c

Please sign in to comment.