6 lines
296 B
SQL
6 lines
296 B
SQL
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';
|