This is my folder structure:
+-- express_example |---- app.js |---- models |-------- songs.js |-------- albums.js |---- and another files of expressjs
var SongSchema = require('mongoose').model('Song').schema;
The above line of code in your albums.js will surely work.
albums.js