Add title field

Change-Id: I17523cf62ef8dbc062eb5742f1c8dcf559c79028
diff --git a/create_user_table.sql b/create_user_table.sql
index b9c59a4..480b623 100644
--- a/create_user_table.sql
+++ b/create_user_table.sql
@@ -1,6 +1,7 @@
 create table `person`  (
     `id` int unsigned not null auto_increment,
     username varchar(32),
+    title varchar(16) not null default '',
     first_name varchar(32) not null default '',
     last_name varchar(32) not null default '',
     organization varchar(32) not null default '',