function activity_send_schema in Open Social 8.2
Same name and namespace in other branches
- 8.9 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.3 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.4 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.5 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.6 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.7 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 8.8 modules/custom/activity_send/activity_send.install \activity_send_schema()
- 10.3.x modules/custom/activity_send/activity_send.install \activity_send_schema()
- 10.0.x modules/custom/activity_send/activity_send.install \activity_send_schema()
- 10.1.x modules/custom/activity_send/activity_send.install \activity_send_schema()
- 10.2.x modules/custom/activity_send/activity_send.install \activity_send_schema()
Implements hook_schema().
File
- modules/
custom/ activity_send/ activity_send.install, line 13 - Installation code for the activity_send module.
Code
function activity_send_schema() {
$schema['user_activity_send'] = [
'fields' => [
'uid' => [
'description' => 'The {user}.uid of user.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
],
'destination' => [
'description' => 'The activity destination name.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
],
'message_template' => [
'description' => 'The message template name.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
],
'frequency' => [
'description' => 'The frequency the emails should be sent. It should match the EmailFrequency plugin id.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => 'immediately',
],
],
'indexes' => [
'uas_uid' => [
'uid',
],
'uas_destination' => [
'destination',
],
'uas_message_template' => [
'message_template',
],
'uas_frequency' => [
'frequency',
],
],
];
return $schema;
}