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
Oracle makes no difference between '' and BLANK, and so the file field in silk.models.Request does not work properly. The field is declared as:
prof_file = FileField(max_length=300, blank=True, storage=silk_storage)
On the oracle level, I have the following constraint for this field:
PROF_FILE NVARCHAR2(300) default NULL not null
Since you are just using django's FileField you may call it a Django error. But you should track it, anyway.
My solution may be on local to use my database router to route silk to an sqlite3 database. This solution, provided it worked, could be documented somewhere.
The text was updated successfully, but these errors were encountered:
django 1.11.16
django-silk 3.0.1
Oracle makes no difference between '' and BLANK, and so the file field in silk.models.Request does not work properly. The field is declared as:
prof_file = FileField(max_length=300, blank=True, storage=silk_storage)
On the oracle level, I have the following constraint for this field:
PROF_FILE NVARCHAR2(300) default NULL not null
Since you are just using django's FileField you may call it a Django error. But you should track it, anyway.
My solution may be on local to use my database router to route silk to an sqlite3 database. This solution, provided it worked, could be documented somewhere.
The text was updated successfully, but these errors were encountered: