Port a small part of include/notifs.inc.php
[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,
81ef0a18 15
bd5155cc
FB
16 # Last modification date (for notifications)
17 last_change date not null,
18
81ef0a18
FB
19 primary key pid (pid),
20 unique key hrpid (hrpid),
21 unique key xorg_id (xorg_id),
22 key ax_id (ax_id)
23);
24
25# vim:set syntax=mysql: