summaryrefslogtreecommitdiff
path: root/docs/man/gammu-smsd-pgsql.7
diff options
context:
space:
mode:
Diffstat (limited to 'docs/man/gammu-smsd-pgsql.7')
-rw-r--r--docs/man/gammu-smsd-pgsql.710
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/man/gammu-smsd-pgsql.7 b/docs/man/gammu-smsd-pgsql.7
index 8bd4a86..fdcea00 100644
--- a/docs/man/gammu-smsd-pgsql.7
+++ b/docs/man/gammu-smsd-pgsql.7
@@ -1,4 +1,4 @@
-.TH "GAMMU-SMSD-PGSQL" "7" "January 19, 2011" "1.29.0" "Gammu"
+.TH "GAMMU-SMSD-PGSQL" "7" "February 10, 2011" "1.29.90" "Gammu"
.SH NAME
gammu-smsd-pgsql \- gammu-smsd(1) backend using PostgreSQL database server as a message storage
.
@@ -126,7 +126,7 @@ CREATE TABLE gammu (
\-\- Dumping data for table "gammu"
\-\-
-INSERT INTO gammu (Version) VALUES (12);
+INSERT INTO gammu (Version) VALUES (13);
\-\- \-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-
@@ -173,6 +173,8 @@ CREATE TABLE outbox (
UpdatedInDB timestamp(0) WITHOUT time zone NOT NULL DEFAULT LOCALTIMESTAMP(0),
InsertIntoDB timestamp(0) WITHOUT time zone NOT NULL DEFAULT \(aqepoch\(aq,
SendingDateTime timestamp NOT NULL DEFAULT \(aqepoch\(aq,
+ SendBefore time NOT NULL DEFAULT \(aq23:59:59\(aq,
+ SendAfter time NOT NULL DEFAULT \(aq00:00:00\(aq,
Text text,
DestinationNumber varchar(20) NOT NULL DEFAULT \(aq\(aq,
Coding varchar(255) NOT NULL DEFAULT \(aqDefault_No_Compression\(aq,
@@ -279,8 +281,8 @@ CREATE TABLE phones (
Receive boolean NOT NULL DEFAULT \(aqno\(aq,
IMEI varchar(35) PRIMARY KEY NOT NULL,
Client text NOT NULL,
- Battery integer NOT NULL DEFAULT 0,
- Signal integer NOT NULL DEFAULT 0,
+ Battery integer NOT NULL DEFAULT \-1,
+ SignalStrength integer NOT NULL DEFAULT \-1,
Sent integer NOT NULL DEFAULT 0,
Received integer NOT NULL DEFAULT 0
);