-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathauthen_pause.schema.sqlite
More file actions
45 lines (39 loc) · 941 Bytes
/
authen_pause.schema.sqlite
File metadata and controls
45 lines (39 loc) · 941 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
--
-- Created by SQL::Translator::Producer::SQLite
-- Created on Sat Aug 13 10:46:32 2011
--
BEGIN TRANSACTION;
--
-- Table: abrakadabra
--
CREATE TABLE abrakadabra (
user char(16) NOT NULL DEFAULT '',
chpasswd char(32) NOT NULL DEFAULT '',
expires datetime DEFAULT NULL,
PRIMARY KEY (user)
);
--
-- Table: grouptable
--
CREATE TABLE grouptable (
user char(12) NOT NULL DEFAULT '',
ugroup char(8) NOT NULL DEFAULT ''
);
CREATE UNIQUE INDEX user_ugroup ON grouptable (user, ugroup);
--
-- Table: usertable
--
CREATE TABLE usertable (
user char(12) NOT NULL DEFAULT '',
password char(13) DEFAULT NULL,
secretemail char(255) DEFAULT NULL,
forcechange tinyint(4) DEFAULT 0,
changed int(11) DEFAULT NULL,
changedby char(10) DEFAULT NULL,
lastvisit datetime DEFAULT NULL,
mfa tinyint(1) DEFAULT 0,
mfa_secret32 varchar(16) DEFAULT NULL,
mfa_recovery_codes text DEFAULT NULL,
PRIMARY KEY (user)
);
COMMIT;