shoutbox_user.install in Shoutbox 6.2
File
shoutbox_user/shoutbox_user.install
View source
<?php
function shoutbox_user_schema() {
$schema['shoutbox_user'] = array(
'description' => 'Link shouts to a user',
'fields' => array(
'shout_id' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'The shout id',
),
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => 'The user id',
),
),
'primary key' => array(
'shout_id',
),
);
return $schema;
}
function shoutbox_user_install() {
drupal_install_schema('shoutbox_user');
}
function shoutbox_user_uninstall() {
drupal_uninstall_schema('shoutbox_user');
}