/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 50626 Source Host : localhost Source Database : test Target Server Type : MySQL Target Server Version : 50626 File Encoding : utf-8 Date: 02/11/2018 04:51:27 AM */ SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `gpgmekeys` -- ---------------------------- DROP TABLE IF EXISTS `gpgmekeys`; CREATE TABLE `gpgmekeys` ( `element` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of `gpgmekeys` -- ---------------------------- BEGIN; INSERT INTO `gpgmekeys` VALUES ('gpgme'), ('keylist'), ('key'), ('revoked'), ('expired'), ('disabled'), ('invalid'), ('can-encrypt'), ('can-sign'), ('can-certify'), ('can-authenticate'), ('is-qualified'), ('protocol'), ('issuer'), ('serial'), ('chain-id'), ('owner-trust'), ('subkeys'), ('subkey'), ('keyid'), ('is_cardkey'), ('curve'), ('secret'), ('name'), ('comment'); COMMIT; SET FOREIGN_KEY_CHECKS = 1;