I have a huge dump file I created from sqlite db and try to load it into postgres db.
Some of the rows are invalid, and I want to skip them. for example, there are objects with char field limited to 1000 chars and there are in fact rows with longer values. because of them django won't let me load the fixture data ("value too long for type character varying(1000)"
How do I tell django to just skip those invalid items and load all the rest?
thanks!
EDIT: preffered option - if I can truncate those values instead of skipping the object entirely it will be better.