From a877ba08c0b050471327bdac8987f320409d0b70 Mon Sep 17 00:00:00 2001 From: FahadKhalid210 Date: Wed, 20 Dec 2023 17:21:24 +0500 Subject: [PATCH] add changelog entry --- changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md | 1 + .../apps/clickhouse/migrations.d/0011_modify_events_type.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md diff --git a/changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md b/changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md new file mode 100644 index 0000000..7039974 --- /dev/null +++ b/changelog.d/20231220_171731_fahad.khalid_fahad_cairn_12.md @@ -0,0 +1 @@ +- 💥[Improvement] Convert `events.user_id` and `video_events.user_id` fields from Int64 to UInt64. (by @FahadKhalid210) \ No newline at end of file diff --git a/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/0011_modify_events_type.sql b/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/0011_modify_events_type.sql index 98c6af4..6aa0e85 100644 --- a/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/0011_modify_events_type.sql +++ b/tutorcairn/templates/cairn/apps/clickhouse/migrations.d/0011_modify_events_type.sql @@ -2,4 +2,4 @@ ALTER TABLE events MODIFY COLUMN user_id UInt64; ALTER TABLE video_events -MODIFY COLUMN user_id UInt64; \ No newline at end of file +MODIFY COLUMN user_id UInt64;