Files
safechat/html/usertable.sql

6 lines
296 B
MySQL
Raw Normal View History

2015-11-06 15:39:49 +00:00
CREATE TABLE IF NOT EXISTS `user` (
`name` varchar(50) NOT NULL COMMENT 'unique name of the user',
`pubkey` text NOT NULL COMMENT 'armored gnupg public key of the user',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='list of all registered users and their public keys';