Skip to content

Commit

Permalink
Correct track log table column names in SQL statement
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteDarinzo committed Apr 11, 2024
1 parent 0220b05 commit c68da5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
* ⚠ NOTE - this requires new columns in the `xh_track_log` table. Review and run the following
SQL, or an equivalent suitable for the particular database you are using:
```sql
ALTER TABLE `xh_track_log` ADD COLUMN `appVersion` VARCHAR(100) NULL;
ALTER TABLE `xh_track_log` ADD COLUMN `appEnvironment` VARCHAR(100) NULL;
ALTER TABLE `xh_track_log` ADD COLUMN `app_version` VARCHAR(100) NULL;
ALTER TABLE `xh_track_log` ADD COLUMN `app_environment` VARCHAR(100) NULL;
ALTER TABLE `xh_track_log` ADD COLUMN `url` VARCHAR(500) NULL;
```

Expand Down

0 comments on commit c68da5c

Please sign in to comment.