This repository has been archived by the owner on Nov 12, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsms_panel.install
90 lines (83 loc) · 2.15 KB
/
sms_panel.install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
// $Id$
/**
* @file
* SMS Panel un/installation hooks.
*/
/**
* Implements hook_install().
*/
function sms_panel_install() {
drupal_install_schema('sms_panel');
drupal_set_message(st('SMS Panel API has been successfully installed.'));
}
/**
* Implements hook_schema().
*/
function sms_panel_schema() {
$schema = array();
// TODO: Rename the schema.
$schema['smses'] = array(
'description' => 'The base table for SMS messages.',
'fields' => array(
'sid' => array(
'description' => 'The primary SMS identifier.',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'description' => 'The user identifier who sends a SMS message.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'direction' => array(
'description' => 'The direction of the message.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'number' => array(
'description' => 'Sender or reciever number',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => 'Unknown',
),
'message' => array(
'description' => 'The SMS message body.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'gateway' => array(
'description' => 'The gateway identifier used to send or recieve this message.',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
),
'timestamp' => array(
'description' => 'The timestamp of sending or recieving message.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'indexes' => array(
'sms_msg_uid' => array('uid'),
'sms_msg_number' => array('number'),
'sms_msg_direction' => array('direction'),
'sms_msg_timestamp' => array('timestamp'),
),
'primary key' => array('sid'),
);
return $schema;
}
/**
* Implements hook_uninstall().
*/
function sms_panel_uninstall() {
drupal_uninstall_schema('sms_panel');
}