Content pages
| Name | Datatype | Description | 
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default | 
| title | varchar(255) | Title of the page being referred to; for display in the browser | 
| name | varchar(255) | Name identifier of the page. | 
| markup_style_id | int(11) | The id of the markup style used in the page; FK into the MARKUP_STYLES table | 
| content | text | HTML based content of the page | 
| permission_id | int(11) | Specifies the permission level to which this page is associated; FK into the permissions table. | 
| created_at | datetime | Time stamp of date this page was created | 
| updated_at | datetime | Time stamp of date this page was last modified. | 
| content_cache | text | Cache storage information | 
Back to Database Tables Main page.