Unknown Changes
This commit is contained in:
6
commands/config.sql
Normal file
6
commands/config.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS `config` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`name` varchar(255) NOT NULL,
|
||||
`value` varchar(255) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
@@ -17,6 +17,7 @@ module.exports = {
|
||||
.setTitle("Test Embed")
|
||||
.setDescription(`Your test message: ${interaction.options.getString('message')}`)
|
||||
.setImage(interaction.user.avatarURL({dynamic : true}))
|
||||
|
||||
|
||||
const testRow = new Discord.MessageActionRow().addComponents(
|
||||
new Discord.MessageButton()
|
||||
|
||||
Reference in New Issue
Block a user