Skip to content

Commit

Permalink
fix: changelog and migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sattvikc committed Mar 14, 2024
1 parent d23ca1f commit 61b6e8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ CREATE TABLE IF NOT EXISTS tenant_required_secondary_factors (
CREATE INDEX IF NOT EXISTS tenant_default_required_factor_ids_tenant_id_index ON
tenant_required_secondary_factors (connection_uri_domain, app_id, tenant_id);

ALTER TABLE totp_devices ADD COLUMN IF NOT EXISTS created_at BIGINT default = 0;
ALTER TABLE totp_devices DROP DEFAULT created_at;
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;
```

## [6.0.0] - 2024-03-05
Expand Down

0 comments on commit 61b6e8e

Please sign in to comment.