Roles
| Name | Datatype | Description |
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default |
| name | varchar(255) | Name of the role detailed |
| parent_id | int(11) | The role that is created by this particular user; By default, students may not ne parents of any role. |
| description | varchar(255) | The description associated with the nature of the role |
| default_page_id | int(11) | NULL at the moment, the default page_id that is displayed to the user, depending on the role |
| cache | text | Cache storage information |
| created_at | datetime | Time stamp of the date created |
| updated_at | datetime | Time stamp of the date updated. |
Back to Database Tables Main page.