summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/OATHAuth/sql/mssql/tables.sql
blob: f4db281cded7855293988d21db72343339940928 (plain)
1
2
3
4
5
6
7
8
9
10
CREATE TABLE /*_*/oathauth_users (
	-- User ID
	id INT NOT NULL PRIMARY KEY IDENTITY(0,1),

	-- Secret key
	secret NVARCHAR(255) NULL DEFAULT NULL,

	-- Scratch tokens
	scratch_tokens varbinary(511) NULL DEFAULT NULL
);