Simplify code.
[platal.git] / upgrade / account / 01_profiles.sql
CommitLineData
81ef0a18
FB
1create table profiles (
2 # Profile identifiers
3 pid int(6) not null auto_increment,
4 hrpid varchar(255) not null,
5
6 # Who is this?
7 xorg_id int(8) not null,
8 ax_id varchar(8) default null,
9
10 # Some singletons
11 # birthdate and birthdate given by reference directory (library, school...)
12 birthdate date default null,
13 birthdate_ref date default null,
cde4fb1d 14 deathdate date default null,
4e426a09
FB
15
16 section tinyint(2) unsigned default null,
17 cv text default null,
3cb24c05
FB
18 freetext mediumtext default null,
19 freetext_pub enum('private', 'public') not null default 'private',
20 medals_pub enum('private', 'public') not null default 'private',
21 alias_pub enum('private', 'public') not null default 'private',
81ef0a18 22
4e426a09
FB
23 nationality1 char(2) default null,
24 nationality2 char(2) default null,
25 nationality3 char(2) default null,
26
bd5155cc
FB
27 # Last modification date (for notifications)
28 last_change date not null,
29
81ef0a18
FB
30 primary key pid (pid),
31 unique key hrpid (hrpid),
32 unique key xorg_id (xorg_id),
4e426a09
FB
33 key ax_id (ax_id),
34 key nationality1 (nationality1),
35 key nationality2 (nationality2),
36 key nationality3 (nationality3)
81ef0a18
FB
37);
38
39# vim:set syntax=mysql: