summaryrefslogtreecommitdiff
path: root/docs/man/gammu-smsd-mysql.7
blob: 18867b4fc7eb7e9c01ca1c60dbf4f93e52fee75a (plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
.\" Man page generated from reStructuredText.
.
.TH "GAMMU-SMSD-MYSQL" "7" "Jun 18, 2017" "1.38.4" "Gammu"
.SH NAME
gammu-smsd-mysql \- gammu-smsd(1) backend using MySQL database server as a message storage
.
.nr rst2man-indent-level 0
.
.de1 rstReportMargin
\\$1 \\n[an-margin]
level \\n[rst2man-indent-level]
level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
-
\\n[rst2man-indent0]
\\n[rst2man-indent1]
\\n[rst2man-indent2]
..
.de1 INDENT
.\" .rstReportMargin pre:
. RS \\$1
. nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin]
. nr rst2man-indent-level +1
.\" .rstReportMargin post:
..
.de UNINDENT
. RE
.\" indent \\n[an-margin]
.\" old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
..
.SH DESCRIPTION
.sp
MYSQL backend stores all data in a \fI\%MySQL\fP database server, which parameters are
defined by configuration (see gammu\-smsdrc for description of configuration
options).
.sp
For tables description see gammu\-smsd\-tables\&.
.sp
This backend is based on gammu\-smsd\-sql\&.
.SH CONFIGURATION
.sp
Before running gammu\-smsd you need to create necessary tables in the
database, which is described below.
.sp
The configuration file then can look like:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
[smsd]
service = sql
driver = native_mysql
host = localhost
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBSEE ALSO:\fP
.INDENT 0.0
.INDENT 3.5
gammu\-smsdrc
.UNINDENT
.UNINDENT
.SH PRIVILEGES
.sp
The user accessing the database does not need much privileges, the following
privileges should be enough:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
GRANT USAGE ON *.* TO \(aqsmsd\(aq@\(aqlocalhost\(aq IDENTIFIED BY \(aqpassword\(aq;

GRANT SELECT, INSERT, UPDATE, DELETE ON \(gasmsd\(ga.* TO \(aqsmsd\(aq@\(aqlocalhost\(aq;

CREATE DATABASE smsd;
.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBNOTE:\fP
.INDENT 0.0
.INDENT 3.5
For creating the SQL tables you need more privileges, especially for
creating triggers, which are used for some functionality.
.UNINDENT
.UNINDENT
.SH CREATING TABLES FOR MYSQL
.sp
Depending on MySQL version and settings please choose best fitting
script to create tables:
.INDENT 0.0
.IP \(bu 2
\fBmysql\-strict.sql\fP can be used in strict mode, but requires MySQL 5.6.5
or newer
.IP \(bu 2
\fBmysql.sql\fP supports all MySQL versions, but requires neither of
\fINO_ZERO_DATE\fP, \fIANSI\fP or \fISTRICT\fP modes to be set in the server
.UNINDENT
.sp
SQL script \fBmysql.sql\fP for creating tables in MySQL database:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
\-\- 
\-\- Database for Gammu SMSD
\-\- 
\-\- In case you get errors about not supported charset, please
\-\- replace utf8mb4 with utf8.

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gagammu\(ga
\-\- 

CREATE TABLE \(gagammu\(ga (
  \(gaVersion\(ga integer NOT NULL default \(aq0\(aq PRIMARY KEY
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gagammu\(ga
\-\- 

INSERT INTO \(gagammu\(ga (\(gaVersion\(ga) VALUES (16);

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gainbox\(ga
\-\- 

CREATE TABLE \(gainbox\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaReceivingDateTime\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaText\(ga text NOT NULL,
  \(gaSenderNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text NOT NULL,
  \(gaSMSCNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaClass\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL auto_increment,
  \(gaRecipientID\(ga text NOT NULL,
  \(gaProcessed\(ga enum(\(aqfalse\(aq,\(aqtrue\(aq) NOT NULL default \(aqfalse\(aq,
  PRIMARY KEY \(gaID\(ga (\(gaID\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

\-\- 
\-\- Dumping data for table \(gainbox\(ga
\-\- 


\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaoutbox\(ga
\-\- 

CREATE TABLE \(gaoutbox\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaSendingDateTime\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaSendBefore\(ga time NOT NULL DEFAULT \(aq23:59:59\(aq,
  \(gaSendAfter\(ga time NOT NULL DEFAULT \(aq00:00:00\(aq,
  \(gaText\(ga text,
  \(gaDestinationNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text,
  \(gaClass\(ga integer default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL auto_increment,
  \(gaMultiPart\(ga enum(\(aqfalse\(aq,\(aqtrue\(aq) default \(aqfalse\(aq,
  \(gaRelativeValidity\(ga integer default \(aq\-1\(aq,
  \(gaSenderID\(ga varchar(255),
  \(gaSendingTimeOut\(ga timestamp NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaDeliveryReport\(ga enum(\(aqdefault\(aq,\(aqyes\(aq,\(aqno\(aq) default \(aqdefault\(aq,
  \(gaCreatorID\(ga text NOT NULL,
  \(gaRetries\(ga int(3) default 0,
  \(gaPriority\(ga integer default 0,
  PRIMARY KEY \(gaID\(ga (\(gaID\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE INDEX outbox_date ON outbox(SendingDateTime, SendingTimeOut);
CREATE INDEX outbox_sender ON outbox(SenderID(250));

\-\- 
\-\- Dumping data for table \(gaoutbox\(ga
\-\- 


\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaoutbox_multipart\(ga
\-\- 

CREATE TABLE \(gaoutbox_multipart\(ga (
  \(gaText\(ga text,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text,
  \(gaClass\(ga integer default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text,
  \(gaID\(ga integer unsigned NOT NULL default \(aq0\(aq,
  \(gaSequencePosition\(ga integer NOT NULL default \(aq1\(aq,
  PRIMARY KEY (\(gaID\(ga, \(gaSequencePosition\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gaoutbox_multipart\(ga
\-\- 

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaphones\(ga
\-\- 

CREATE TABLE \(gaphones\(ga (
  \(gaID\(ga text NOT NULL,
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaTimeOut\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaSend\(ga enum(\(aqyes\(aq,\(aqno\(aq) NOT NULL default \(aqno\(aq,
  \(gaReceive\(ga enum(\(aqyes\(aq,\(aqno\(aq) NOT NULL default \(aqno\(aq,
  \(gaIMEI\(ga varchar(35) NOT NULL,
  \(gaIMSI\(ga varchar(35) NOT NULL,
  \(gaNetCode\(ga varchar(10) default \(aqERROR\(aq,
  \(gaNetName\(ga varchar(35) default \(aqERROR\(aq,
  \(gaClient\(ga text NOT NULL,
  \(gaBattery\(ga integer NOT NULL DEFAULT \-1,
  \(gaSignal\(ga integer NOT NULL DEFAULT \-1,
  \(gaSent\(ga int NOT NULL DEFAULT 0,
  \(gaReceived\(ga int NOT NULL DEFAULT 0,
  PRIMARY KEY (\(gaIMEI\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gaphones\(ga
\-\- 

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gasentitems\(ga
\-\- 

CREATE TABLE \(gasentitems\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaSendingDateTime\(ga timestamp NOT NULL default \(aq0000\-00\-00 00:00:00\(aq,
  \(gaDeliveryDateTime\(ga timestamp NULL,
  \(gaText\(ga text NOT NULL,
  \(gaDestinationNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text NOT NULL,
  \(gaSMSCNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaClass\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL default \(aq0\(aq,
  \(gaSenderID\(ga varchar(255) NOT NULL,
  \(gaSequencePosition\(ga integer NOT NULL default \(aq1\(aq,
  \(gaStatus\(ga enum(\(aqSendingOK\(aq,\(aqSendingOKNoReport\(aq,\(aqSendingError\(aq,\(aqDeliveryOK\(aq,\(aqDeliveryFailed\(aq,\(aqDeliveryPending\(aq,\(aqDeliveryUnknown\(aq,\(aqError\(aq) NOT NULL default \(aqSendingOK\(aq,
  \(gaStatusError\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTPMR\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaRelativeValidity\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaCreatorID\(ga text NOT NULL,
  PRIMARY KEY (\(gaID\(ga, \(gaSequencePosition\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE INDEX sentitems_date ON sentitems(DeliveryDateTime);
CREATE INDEX sentitems_tpmr ON sentitems(TPMR);
CREATE INDEX sentitems_dest ON sentitems(DestinationNumber);
CREATE INDEX sentitems_sender ON sentitems(SenderID(250));

\-\- 
\-\- Dumping data for table \(gasentitems\(ga
\-\- 


\-\- 
\-\- Triggers for setting default timestamps
\-\- 

DELIMITER //

CREATE TRIGGER inbox_timestamp BEFORE INSERT ON inbox
FOR EACH ROW
BEGIN
    IF NEW.ReceivingDateTime = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.ReceivingDateTime = CURRENT_TIMESTAMP();
    END IF;
END;//

CREATE TRIGGER outbox_timestamp BEFORE INSERT ON outbox
FOR EACH ROW
BEGIN
    IF NEW.InsertIntoDB = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.InsertIntoDB = CURRENT_TIMESTAMP();
    END IF;
    IF NEW.SendingDateTime = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.SendingDateTime = CURRENT_TIMESTAMP();
    END IF;
    IF NEW.SendingTimeOut = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.SendingTimeOut = CURRENT_TIMESTAMP();
    END IF;
END;//

CREATE TRIGGER phones_timestamp BEFORE INSERT ON phones
FOR EACH ROW
BEGIN
    IF NEW.InsertIntoDB = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.InsertIntoDB = CURRENT_TIMESTAMP();
    END IF;
    IF NEW.TimeOut = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.TimeOut = CURRENT_TIMESTAMP();
    END IF;
END;//

CREATE TRIGGER sentitems_timestamp BEFORE INSERT ON sentitems
FOR EACH ROW
BEGIN
    IF NEW.InsertIntoDB = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.InsertIntoDB = CURRENT_TIMESTAMP();
    END IF;
    IF NEW.SendingDateTime = \(aq0000\-00\-00 00:00:00\(aq THEN
        SET NEW.SendingDateTime = CURRENT_TIMESTAMP();
    END IF;
END;//

DELIMITER ;


.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBNOTE:\fP
.INDENT 0.0
.INDENT 3.5
You can find the script in \fBdocs/sql/mysql.sql\fP as well.
.UNINDENT
.UNINDENT
.sp
SQL script \fBmysql\-strict.sql\fP for creating tables in MySQL database:
.INDENT 0.0
.INDENT 3.5
.sp
.nf
.ft C
\-\- 
\-\- Database for Gammu SMSD
\-\- 
\-\- In case you get errors about not supported charset, please
\-\- replace utf8mb4 with utf8.

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gagammu\(ga
\-\- 

CREATE TABLE \(gagammu\(ga (
  \(gaVersion\(ga integer NOT NULL default \(aq0\(aq PRIMARY KEY
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gagammu\(ga
\-\- 

INSERT INTO \(gagammu\(ga (\(gaVersion\(ga) VALUES (16);

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gainbox\(ga
\-\- 

CREATE TABLE \(gainbox\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaReceivingDateTime\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaText\(ga text NOT NULL,
  \(gaSenderNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text NOT NULL,
  \(gaSMSCNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaClass\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL auto_increment,
  \(gaRecipientID\(ga text NOT NULL,
  \(gaProcessed\(ga enum(\(aqfalse\(aq,\(aqtrue\(aq) NOT NULL default \(aqfalse\(aq,
  PRIMARY KEY \(gaID\(ga (\(gaID\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 AUTO_INCREMENT=1 ;

\-\- 
\-\- Dumping data for table \(gainbox\(ga
\-\- 


\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaoutbox\(ga
\-\- 

CREATE TABLE \(gaoutbox\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaSendingDateTime\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaSendBefore\(ga time NOT NULL DEFAULT \(aq23:59:59\(aq,
  \(gaSendAfter\(ga time NOT NULL DEFAULT \(aq00:00:00\(aq,
  \(gaText\(ga text,
  \(gaDestinationNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text,
  \(gaClass\(ga integer default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL auto_increment,
  \(gaMultiPart\(ga enum(\(aqfalse\(aq,\(aqtrue\(aq) default \(aqfalse\(aq,
  \(gaRelativeValidity\(ga integer default \(aq\-1\(aq,
  \(gaSenderID\(ga varchar(255),
  \(gaSendingTimeOut\(ga timestamp NULL default CURRENT_TIMESTAMP,
  \(gaDeliveryReport\(ga enum(\(aqdefault\(aq,\(aqyes\(aq,\(aqno\(aq) default \(aqdefault\(aq,
  \(gaCreatorID\(ga text NOT NULL,
  \(gaRetries\(ga int(3) default 0,
  \(gaPriority\(ga integer default 0,
  PRIMARY KEY \(gaID\(ga (\(gaID\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE INDEX outbox_date ON outbox(SendingDateTime, SendingTimeOut);
CREATE INDEX outbox_sender ON outbox(SenderID(250));

\-\- 
\-\- Dumping data for table \(gaoutbox\(ga
\-\- 


\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaoutbox_multipart\(ga
\-\- 

CREATE TABLE \(gaoutbox_multipart\(ga (
  \(gaText\(ga text,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text,
  \(gaClass\(ga integer default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text,
  \(gaID\(ga integer unsigned NOT NULL default \(aq0\(aq,
  \(gaSequencePosition\(ga integer NOT NULL default \(aq1\(aq,
  PRIMARY KEY (\(gaID\(ga, \(gaSequencePosition\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gaoutbox_multipart\(ga
\-\- 

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gaphones\(ga
\-\- 

CREATE TABLE \(gaphones\(ga (
  \(gaID\(ga text NOT NULL,
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaTimeOut\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaSend\(ga enum(\(aqyes\(aq,\(aqno\(aq) NOT NULL default \(aqno\(aq,
  \(gaReceive\(ga enum(\(aqyes\(aq,\(aqno\(aq) NOT NULL default \(aqno\(aq,
  \(gaIMEI\(ga varchar(35) NOT NULL,
  \(gaIMSI\(ga varchar(35) NOT NULL,
  \(gaNetCode\(ga varchar(10) default \(aqERROR\(aq,
  \(gaNetName\(ga varchar(35) default \(aqERROR\(aq,
  \(gaClient\(ga text NOT NULL,
  \(gaBattery\(ga integer NOT NULL DEFAULT \-1,
  \(gaSignal\(ga integer NOT NULL DEFAULT \-1,
  \(gaSent\(ga int NOT NULL DEFAULT 0,
  \(gaReceived\(ga int NOT NULL DEFAULT 0,
  PRIMARY KEY (\(gaIMEI\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

\-\- 
\-\- Dumping data for table \(gaphones\(ga
\-\- 

\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-

\-\- 
\-\- Table structure for table \(gasentitems\(ga
\-\- 

CREATE TABLE \(gasentitems\(ga (
  \(gaUpdatedInDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  \(gaInsertIntoDB\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaSendingDateTime\(ga timestamp NOT NULL default CURRENT_TIMESTAMP,
  \(gaDeliveryDateTime\(ga timestamp NULL,
  \(gaText\(ga text NOT NULL,
  \(gaDestinationNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaCoding\(ga enum(\(aqDefault_No_Compression\(aq,\(aqUnicode_No_Compression\(aq,\(aq8bit\(aq,\(aqDefault_Compression\(aq,\(aqUnicode_Compression\(aq) NOT NULL default \(aqDefault_No_Compression\(aq,
  \(gaUDH\(ga text NOT NULL,
  \(gaSMSCNumber\(ga varchar(20) NOT NULL default \(aq\(aq,
  \(gaClass\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTextDecoded\(ga text NOT NULL,
  \(gaID\(ga integer unsigned NOT NULL default \(aq0\(aq,
  \(gaSenderID\(ga varchar(255) NOT NULL,
  \(gaSequencePosition\(ga integer NOT NULL default \(aq1\(aq,
  \(gaStatus\(ga enum(\(aqSendingOK\(aq,\(aqSendingOKNoReport\(aq,\(aqSendingError\(aq,\(aqDeliveryOK\(aq,\(aqDeliveryFailed\(aq,\(aqDeliveryPending\(aq,\(aqDeliveryUnknown\(aq,\(aqError\(aq) NOT NULL default \(aqSendingOK\(aq,
  \(gaStatusError\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaTPMR\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaRelativeValidity\(ga integer NOT NULL default \(aq\-1\(aq,
  \(gaCreatorID\(ga text NOT NULL,
  PRIMARY KEY (\(gaID\(ga, \(gaSequencePosition\(ga)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4;

CREATE INDEX sentitems_date ON sentitems(DeliveryDateTime);
CREATE INDEX sentitems_tpmr ON sentitems(TPMR);
CREATE INDEX sentitems_dest ON sentitems(DestinationNumber);
CREATE INDEX sentitems_sender ON sentitems(SenderID(250));

\-\- 
\-\- Dumping data for table \(gasentitems\(ga
\-\- 

.ft P
.fi
.UNINDENT
.UNINDENT
.sp
\fBNOTE:\fP
.INDENT 0.0
.INDENT 3.5
You can find the script in \fBdocs/sql/mysql\-strict.sql\fP as well.
.UNINDENT
.UNINDENT
.SH UPGRADING TABLES
.sp
The easiest way to upgrade database structure is to backup old one and start
with creating new one based on example above.
.sp
For upgrading existing database, you can use changes described in
smsd\-tables\-history and then manually update \fBVersion\fP field in
\fBgammu\fP table.
.SH AUTHOR
Michal Čihař <michal@cihar.com>
.SH COPYRIGHT
2009-2015, Michal Čihař <michal@cihar.com>
.\" Generated by docutils manpage writer.
.