View source
<?php
function cmis_sync_install() {
drupal_install_schema('cmis_sync');
}
function cmis_sync_uninstall() {
drupal_uninstall_schema('cmis_sync');
variable_del('cmis_sync_root_folder');
variable_del('cmis_sync_node_type');
variable_del('cmis_sync_node_status');
variable_del('cmis_sync_node_promote');
variable_del('cmis_sync_node_sticky');
}
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;
}