summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/mssql/archives/patch-bot_passwords.sql
blob: 7718ffaaf4946d532a7ddcd53f511b77aad5ade3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--
-- This table contains a user's bot passwords: passwords that allow access to
-- the account via the API with limited rights.
--
CREATE TABLE /*_*/bot_passwords (
	bp_user int NOT NULL REFERENCES /*_*/mwuser(user_id) ON DELETE CASCADE,
	bp_app_id nvarchar(32) NOT NULL,
	bp_password nvarchar(255) NOT NULL,
	bp_token nvarchar(255) NOT NULL,
	bp_restrictions nvarchar(max) NOT NULL,
	bp_grants nvarchar(max) NOT NULL,
	PRIMARY KEY (bp_user, bp_app_id)
);