diff --git a/CHANGELOG.md b/CHANGELOG.md index 32163a6ca..cf2522d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,9 +44,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Make sure the core is already upgraded to version 8.0.0 before migrating -
- -If using PostgreSQL +If using PostgreSQL ```sql ALTER TABLE totp_user_devices ADD COLUMN IF NOT EXISTS created_at BIGINT default 0; @@ -54,11 +52,7 @@ ALTER TABLE totp_user_devices ALTER COLUMN created_at DROP DEFAULT; ``` -
- -
- -If using MySQL +If using MySQL ```sql ALTER TABLE totp_user_devices ADD COLUMN created_at BIGINT UNSIGNED default 0; @@ -66,8 +60,6 @@ ALTER TABLE totp_user_devices ALTER COLUMN created_at DROP DEFAULT; ``` -
- ## [8.0.1] - 2024-03-11 - Making this version backward compatible. Breaking changes in `8.0.0` can now be ignored.