You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
486 B
JavaScript
25 lines
486 B
JavaScript
const mongoose = require('mongoose')
|
|
const schema = new mongoose.Schema({
|
|
id: Number,
|
|
externalId: Number,
|
|
|
|
storeId: String,
|
|
storeECPId: String,
|
|
|
|
latitude: Number,
|
|
longitude: Number,
|
|
city: String,
|
|
postalCode: String,
|
|
address: String,
|
|
street: String,
|
|
phone: String,
|
|
seoURL: {
|
|
type: String,
|
|
unique: true,
|
|
},
|
|
name1: String,
|
|
name2: String,
|
|
|
|
lastRefresh: Date,
|
|
})
|
|
module.exports = mongoose.model('Store', schema) |