function cmis_sync_schema in CMIS API 6.2
Same name and namespace in other branches
- 6.4 cmis_sync/cmis_sync.install \cmis_sync_schema()
- 6 cmis_sync/cmis_sync.install \cmis_sync_schema()
- 6.3 cmis_sync/cmis_sync.install \cmis_sync_schema()
- 7.2 cmis_sync/cmis_sync.install \cmis_sync_schema()
- 7 cmis_sync/cmis_sync.install \cmis_sync_schema()
Implementation of hook_schema()
File
- cmis_sync/
cmis_sync.install, line 20
Code
function cmis_sync_schema() {
$schema['cmis_sync_node'] = array(
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => t('Primary Key: Unique ID.'),
),
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'cmis_objectId' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => t('ObjectId from the CMIS repository'),
),
'changed_timestamp' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => t('The most recent time the drupal node has been saved/synchronized'),
),
),
'unique keys' => array(
'nid' => array(
'nid',
),
),
'primary key' => array(
'id',
),
);
return $schema;
}