I'm trying to create a table, but I get this error:
SQL error - BLOB/TEXT column 'url' used in key specification without a key length
This is the SQL I'm using
CREATE TABLE recipes (
url TEXT NOT NULL,
name TEXT NOT NULL,
pic_url TEXT NOT NULL,
vegetarian INT NOT NULL,
ingredients TEXT NOT NULL,
time INT NOT NULL,
rating FLOAT NOT NULL,
ratings_no INT NOT NULL,
keywords TEXT NOT NULL,
UNIQUE (
url
)
);
Does anyone know how I can fix this? Thanks.