What's new

account create problem

horrador

Silver Supporter
Veteran Member
54
2015
1
Location
Sofiq-Bulgaria
can I tell me some how to resolve this problem



SQL(p): INSERT INTO account(username, sha_pass_hash, joindate) VALUES('Test', '90AE35E151D81C6B94121D0252680F3CD6CF0EBA', NOW())
[ERROR]: [1364] Field 'mutereason' doesn't have a default value
Unhandled MySQL errno 1364. Unexpected behaviour possible.
 

Tion

Veteran Member
38
2015
4
Hey, horrador!

Here's a quick query you can try out, should work! :)

Code:
INSERT INTO account(username, sha_pass_hash, joindate, mutereason) VALUES('Test', '90AE35E151D81C6B94121D0252680F3CD6CF0EBA', '10/5/2015', 0)
 
Top