Content pages: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
<div style="background-color: #ffcccc; border: 1px solid #cc0000; padding: 10px; margin-bottom: 20px; text-align: center;"> | |||
'''⚠ DEPRECATED: This table has been removed from the database in the latest release. This documentation is retained for historical reference only.''' | |||
</div> | |||
The Content Pages table gives information regarding the Content in each of the pages of Expertiza. | The Content Pages table gives information regarding the Content in each of the pages of Expertiza. | ||
== Content Pages Variable Documentation == | == Content Pages Variable Documentation == | ||
Latest revision as of 05:21, 9 December 2025
⚠ 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.