Files
bot-discord-coins/events/guildCreate.js
T
2024-05-28 21:37:53 +02:00

11 lines
396 B
JavaScript

const db = require('../fonctions/database.js');
module.exports = {
name: 'guildCreate',
async execute(guild) {
db.run(`INSERT OR IGNORE INTO config (guildId, name, value) VALUES (?, ?, ?)`, [guild.id, 'prefix', '&']);
guild.members.cache.forEach(member => {
db.run(`INSERT OR IGNORE INTO users (guildId, userId) VALUES (?, ?)`, [guild.id, member.id]);
});
},
};