mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-17 07:45:51 +01:00
4 lines
229 B
SQL
4 lines
229 B
SQL
-- v7: Update trust state values
|
|
UPDATE crypto_device SET trust=300 WHERE trust=1; -- verified
|
|
UPDATE crypto_device SET trust=-100 WHERE trust=2; -- blacklisted
|
|
UPDATE crypto_device SET trust=0 WHERE trust=3; -- ignored -> unset
|