You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15308.up

13 lines
271 B

USE prosody;
SET autocommit=0;
CREATE TABLE IF NOT EXISTS `sipwise_offline` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`domain` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
`stanza` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
COMMIT;