| Current Path : /var/www/administrator/components/com_contactpush/sql/ |
| Current File : /var/www/administrator/components/com_contactpush/sql/install.mysql.utf8.sql |
-- - 8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- Create table : Messages -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >8 - CREATE TABLE IF NOT EXISTS `#__contactpush_messages` ( `id` BIGINT(20) UNSIGNED NOT NULL auto_increment, `created_by` BIGINT(20) UNSIGNED , `access` BIGINT(20) UNSIGNED DEFAULT 1 , `title` VARCHAR(255) , `message` TEXT , `priority` INT(11) , `creation_date` DATETIME , `modification_date` DATETIME , `status` INT(11) , `published` TINYINT(11) DEFAULT 2 , PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- - 8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- Create table : Message recipients -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >8 - CREATE TABLE IF NOT EXISTS `#__contactpush_messagerecipients` ( `id` BIGINT(20) UNSIGNED NOT NULL auto_increment, `message` BIGINT(20) UNSIGNED , `user` BIGINT(20) UNSIGNED , `sent` DATETIME , `received` DATETIME , PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- - 8< - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- Create table : Push UIDs -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - >8 - CREATE TABLE IF NOT EXISTS `#__contactpush_pushuids` ( `id` BIGINT(20) UNSIGNED NOT NULL auto_increment, `push_user_id` VARCHAR(255) , `user` BIGINT(20) UNSIGNED , `creation_date` DATETIME , `access` BIGINT(20) UNSIGNED DEFAULT 1 , `published` TINYINT(11) DEFAULT 2 , PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;