{ "mentions": { "name": "mentions", "database": null, "fields": [ { "name": "team_id", "type": "BIGINT", "length": "20", "unsigned": true, "null": false }, { "name": "type", "type": "ENUM", "values": [ "at", "word", "dm", "everyone", "channel", "everything" ], "null": false }, { "name": "is_bot", "type": "TINYINT", "length": "3", "unsigned": true, "null": false } ], "indexes": [ { "type": "PRIMARY", "cols": [ { "name": "team_id" } ] } ], "props": { "ENGINE": "InnoDB", "CHARSET": "utf8mb4" }, "more": [], "sql": "CREATE TABLE `mentions` (\n `team_id` bigint(20) unsigned NOT NULL,\n `type` enum('at','word','dm','everyone','channel','everything') NOT NULL,\n `is_bot` tinyint(3) unsigned NOT NULL,\n PRIMARY KEY (`team_id`),\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;" } }