| 1 |
<?php
|
| 2 |
// $Id:$
|
| 3 |
function phpbb2privatemsg_schema() {
|
| 4 |
$schema['phpbb2privatemsg'] = array(
|
| 5 |
'description' => t('Maps phpBB forum forum_id to Drupal taxonomy tid.'),
|
| 6 |
'fields' => array(
|
| 7 |
'mid' => array('type' => 'int', 'unsigned' => TRUE, 'size' => 'small', 'not null' => TRUE, 'default' => 0),
|
| 8 |
'thread_id' => array('type' => 'int', 'unsigned' => TRUE, 'size' => 'small', 'not null' => TRUE, 'default' => 0),
|
| 9 |
'msg_id' => array('type' => 'int', 'unsigned' => TRUE, 'size' => 'small', 'not null' => TRUE, 'default' => 0),
|
| 10 |
),
|
| 11 |
'primary key' => array('mid'),
|
| 12 |
);
|
| 13 |
|
| 14 |
return $schema;
|
| 15 |
}
|
| 16 |
|
| 17 |
function phpbb2privatemsg_install() {
|
| 18 |
// Create tables.
|
| 19 |
drupal_install_schema('phpbb2privatemsg');
|
| 20 |
}
|
| 21 |
|
| 22 |
function phpbb2privatemsg_uninstall() {
|
| 23 |
variable_del('phpbb2privatemsg_import_successful');
|
| 24 |
drupal_uninstall_schema('phpbb2privatemsg');
|
| 25 |
}
|