Content pages: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
|  (Created page with "{| class="wikitable"  !Name  !!Datatype !!Description |-  !id   |int(11)   |Primary key of the entry in table, auto increments by default |-  !title   |varchar(255)   |Title of t...") | No edit summary | ||
| Line 1: | Line 1: | ||
| The Content Pages table gives information regarding the Content in each of the pages of Expertiza. | |||
| == Content Pages Documentation == | |||
| {| class="wikitable"   | {| class="wikitable"   | ||
| !Name  !!Datatype !!Description | !Name  !!Datatype !!Description | ||
| Line 38: | Line 41: | ||
| |Cache storage information | |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 [http:// | Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page. | ||
Revision as of 23:05, 24 April 2018
The Content Pages table gives information regarding the Content in each of the pages of Expertiza.
Content Pages 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.