I am making a model in which i have a FileField. I want to store the file content in a database column, instead of file path. Any suggestions?
FileField
Well, how about simply storing it in a Binary column? You can then store collection of bytes. And if the filename is important to you as well, you can store that in an additional name column.