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
As i know, the id column should be INTEGER, in your case there is no id column, there is an ip column, so why don't you change in the following way? line: 188
id VARCHAR(128) NOT NULL,
maybe better to change to:
ip VARCHAR(128) NOT NULL,
?
Because as i know the id column should look like:
id INT(11) NOT NULL AUTO_INCREMENT...
and PRIMARY KEY should be INTEGER, am i right? So, if you want, you can just add id before ip column, maybe it whould be better?
The text was updated successfully, but these errors were encountered:
As i know, the id column should be INTEGER, in your case there is no id column, there is an ip column, so why don't you change in the following way?
line: 188
maybe better to change to:
?
Because as i know the id column should look like:
and PRIMARY KEY should be INTEGER, am i right? So, if you want, you can just add id before ip column, maybe it whould be better?
The text was updated successfully, but these errors were encountered: