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 b0ca8ca commit 3e14e8e
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,26 +61,6 @@ ALTER TABLE totp_user_devices
<summary>If using MySQL</summary>

```sql
CREATE TABLE IF NOT EXISTS tenant_first_factors (
connection_uri_domain VARCHAR(256) DEFAULT '',
app_id VARCHAR(64) DEFAULT 'public',
tenant_id VARCHAR(64) DEFAULT 'public',
factor_id VARCHAR(128),
PRIMARY KEY (connection_uri_domain, app_id, tenant_id, factor_id),
FOREIGN KEY (connection_uri_domain, app_id, tenant_id)
REFERENCES tenant_configs (connection_uri_domain, app_id, tenant_id) ON DELETE CASCADE
);

CREATE TABLE IF NOT EXISTS tenant_required_secondary_factors (
connection_uri_domain VARCHAR(256) DEFAULT '',
app_id VARCHAR(64) DEFAULT 'public',
tenant_id VARCHAR(64) DEFAULT 'public',
factor_id VARCHAR(128),
PRIMARY KEY (connection_uri_domain, app_id, tenant_id, factor_id),
FOREIGN KEY (connection_uri_domain, app_id, tenant_id)
REFERENCES tenant_configs (connection_uri_domain, app_id, tenant_id) ON DELETE CASCADE
);

ALTER TABLE totp_user_devices ADD COLUMN created_at BIGINT UNSIGNED default 0;
ALTER TABLE totp_user_devices
ALTER COLUMN created_at DROP DEFAULT;
Expand Down

0 comments on commit 3e14e8e

Please sign in to comment.