Content pages
Jump to navigation
Jump to search
⚠ DEPRECATED: This table has been removed from the database in the latest release. This documentation is retained for historical reference only.
The Content Pages table gives information regarding the Content in each of the pages of Expertiza.
Content Pages Variable Documentation
| 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 |
E/R diagram for Parents Tables
No Tables were referred by the Content Pages Table as Foreign Key Relationship.
E/R diagram for Child Tables
No Tables were referred by the Content Pages Table as Foreign Key Relationship.
Back to Database Tables Main page.