import mongoose, { Schema } from "mongoose"; const Artist = new Schema({ name: {type: String, requeired: true}, soundcloud: {type: String}, facebook: {type: String}, spotify: {type: String}, date: {type: Date}, }); export default mongoose.model('Artist', Artist);