I'm building an application that contains a database of movies. Movies have various fields such as a title, directors, actors, etc. I also want to include a movie cover with each row in the movies database. I currently have a column in my database called "cover_path" which contains the absolute file path to an image (the movie cover). I will similarly have one called "movie_path" which contains the path to the actual movie.
Are there better ways of storing files in a database and by storing the file path to an image in the database am I defeating the purpose of data independence?