3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-27 11:15:02 +00:00

add migration to create the table

This commit is contained in:
Rstar284 2022-04-23 18:29:56 +04:00
parent af4c027891
commit 4c90848eda
2 changed files with 44 additions and 1 deletions

View file

@ -21,7 +21,7 @@ export const TagListAliasesCmd = tagsCmd({
aliasesArr = aliases.map((a) => a.alias);
createChunkedMessage(
msg.channel,
`Available aliases for tag \`${prefix + args.tag}\`: \`\`\`${aliasesArr.join(", ")}\`\`\``,
`Available aliases for tag \`${args.tag}\` (use with \`${prefix}alias\`: \`\`\`${aliasesArr.join(", ")}\`\`\``,
);
return;
},