Skip to content

Commit 989723a

Browse files
authored
Merge pull request #967 from numerique-gouv/change-domain
Change domain
2 parents b120466 + 61f664a commit 989723a

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ npx changeset
126126
```
127127

128128
You will be prompted to select the type of change you want to make.
129-
As this changelog is for end frensh users, we recommend you write your change in french :fr:.
129+
As this changelog is intended for french end users, we recommend you write your change in French :fr:.
130130

131131
Commit your changes and push them in your branch.
132132
We will merge a "Version Packages" PR when we are ready to release :wink:
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
exports.shorthands = undefined;
2+
3+
exports.up = async (pgm) => {
4+
await pgm.db.query(`
5+
DELETE FROM authenticators;
6+
`);
7+
await pgm.db.query(`
8+
UPDATE users
9+
SET force_2fa = false
10+
WHERE encrypted_totp_key IS NULL;
11+
`);
12+
};
13+
14+
exports.down = async (pgm) => {};

0 commit comments

Comments
 (0)