Skip to content

Commit

Permalink
fix: changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Mar 14, 2024
1 parent 3e14e8e commit 4e69404
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,30 +44,22 @@ 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

<details>

<summary>If using PostgreSQL</summary>
If using PostgreSQL

```sql
ALTER TABLE totp_user_devices ADD COLUMN IF NOT EXISTS created_at BIGINT default 0;
ALTER TABLE totp_user_devices
ALTER COLUMN created_at DROP DEFAULT;
```

</details>

<details>

<summary>If using MySQL</summary>
If using MySQL

```sql
ALTER TABLE totp_user_devices ADD COLUMN created_at BIGINT UNSIGNED default 0;
ALTER TABLE totp_user_devices
ALTER COLUMN created_at DROP DEFAULT;
```

</details>

## [8.0.1] - 2024-03-11

- Making this version backward compatible. Breaking changes in `8.0.0` can now be ignored.
Expand Down

0 comments on commit 4e69404

Please sign in to comment.