#Notes about accounts
Introduction
Paraforum allows both anonymous and non-anonymous access.
Details
Fields
Fields in the DB table.
| uid | int unsigned not null primary key auto_increment | the uid |
| screen_name | varchar(50) | displayed nickname |
| pwd_md5 | varchar(32) | md5( uid . password ) |
| email | varchar(80) | email |
| state | char(10) | can be CREATED, ACTIVE, SUSPENDED, CLOSED |
| group_name | varchar(30) | Group can be super, admin, user |
| msg_count | int unsigned | message count |
| karma | int unsigned not null | Karma! |
| comment | varchar(200) | admin's remarks in case of warnings etc. |
| createdate | timestamp | create datestamp |
| metadata | varchar(100) | contains activation code on creation |