I have four columns id, name, industry, url
I am asking whether there is parameter that ignores a column in get_or_create. Not a unique together constraint. Since url can change, I want peewee to ignore the column url when adding using get_or_create.
I want it to check whether name and industry are already present in the table. If they are, then it does not add a duplicate entry. If they are not, then it adds a new entry.