We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cloned the code and execute. Check the controller : \config\User.js method create_user, giving error with latest db file. please check
I have updated the code
let user_params = [user.username, user.firstname,user.surname, user.email,user.password,user.joined,user.email_verified,user.isOnline, ] let [e, s] = await catchify(db.query('INSERT INTO users (username, firstname, surname, email, password, joined, email_verified,isOnline) VALUES (?)', [user_params]))
In Local, now it's working. Also few logical bugs in current database
a) didn't found PRIMARY KEY/ FOREGIN KEY in entity b) you need to use stored procedures for multiple queries. c) In Home Section, I am getting error.
The text was updated successfully, but these errors were encountered:
Can you please explain in brief what code you changed exactly? And if possible can you please provide modified working code?
Sorry, something went wrong.
No branches or pull requests
I cloned the code and execute.
Check the controller : \config\User.js method create_user, giving error with latest db file. please check
I have updated the code
let user_params = [user.username, user.firstname,user.surname, user.email,user.password,user.joined,user.email_verified,user.isOnline, ]
let [e, s] = await catchify(db.query('INSERT INTO users (username, firstname, surname, email, password, joined, email_verified,isOnline) VALUES (?)', [user_params]))
In Local, now it's working.
Also few logical bugs in current database
a) didn't found PRIMARY KEY/ FOREGIN KEY in entity
b) you need to use stored procedures for multiple queries.
c) In Home Section, I am getting error.
The text was updated successfully, but these errors were encountered: