From: Mats Sjöberg Date: Tue, 19 Nov 2013 20:44:16 +0000 (+0200) Subject: Added push_subscriber table to database.sql. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=862a5e147467658443d83fa69fba021e688dbaae;p=friendica.git Added push_subscriber table to database.sql. --- diff --git a/database.sql b/database.sql index 69d87c3698..2c557a3e78 100644 --- a/database.sql +++ b/database.sql @@ -1156,3 +1156,22 @@ CREATE TABLE IF NOT EXISTS `tag` ( PRIMARY KEY (`iid`, `tag`), KEY `tag` (`tag`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Table structure for table `push_subscriber` +-- + +CREATE TABLE IF NOT EXISTS `push_subscriber` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `uid` int(11) NOT NULL, + `callback_url` char(255) NOT NULL, + `topic` char(255) NOT NULL, + `nickname` char(255) NOT NULL, + `push` int(11) NOT NULL, + `last_update` datetime NOT NULL, + `secret` char(255) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +