mediawiki-extensions-OATHAuth/sql/mysql/patch-remove_reset.sql
Tyler Anthony Romeo 89455cdfb2 Refactor extension key storage
This takes out the actual key information from
OATHUser and puts it into an OATHKey class, which OATHUser
depends on. This allows easily swapping keys in/out from
a user.

Change-Id: Ife5f1bae4ad65b66c5e20017cc43c0576b4aba19
2016-03-22 18:08:45 -07:00

9 lines
190 B
SQL

ALTER TABLE /*_*/oathauth_users
DROP COLUMN secret_reset;
ALTER TABLE /*_*/oathauth_users
DROP COLUMN scratch_tokens_reset;
ALTER TABLE /*_*/oathauth_users
DROP COLUMN is_validated;