You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
INSERT INTO techs (id, name) VALUES (DEFAULT, [name_here])
ON CONFLICT DO NOTHING
RETURNING id;
...
-- ON CONFLICT DO NOTHING could also be added in the following queryINSERT INTO accounts_techs (account, tech) VALUES ([account_id_here], [tech_id_here]);
insertTech(discordId,callback=data=>{},error=err=>{console.log(err);msg.channel.send('Could not insert tech');})
The text was updated successfully, but these errors were encountered:
Detailed Description
!iknow
add a self-summary of what languages/techs the user knows.!they know @someone
responds with a list of skills the user specified knows.There are different ways to implement this. Either:
Context
!iknow JavaScript
=>!theyknow @sirMerr
=> Bot responds with:@sirMerr knows JavaScript
!iknow 'Web Dev', Ruby
=>!theyknow @sirMerr
=> Bot responds with:Possible Implementation
Pseudo code
SQL
The text was updated successfully, but these errors were encountered: