Skip to content

Commit

Permalink
Update upgrading-users-core-version.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar authored Mar 19, 2024
1 parent e3d8bfa commit bfc0405
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions v2/contribute/checklists/saas/upgrading-users-core-version.md
Original file line number Diff line number Diff line change
Expand Up @@ -1048,3 +1048,9 @@ ALTER TABLE emailpassword_pswd_reset_tokens ADD COLUMN email VARCHAR(256);
```sql
ALTER TABLE user_roles DROP CONSTRAINT IF EXISTS user_roles_role_fkey;
```

### 8.0 to 9.0
```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;
```

0 comments on commit bfc0405

Please sign in to comment.