1
0
mirror of https://github.com/franjsco/umbrello-api synced 2025-01-14 16:45:41 +01:00
umbrello-api/src/db/city.model.js

33 lines
453 B
JavaScript
Raw Permalink Normal View History

2019-08-22 17:43:41 +02:00
import mongoose from 'mongoose';
const city = {
id: {
type: Number,
required: true,
trim: true,
},
name: {
type: String,
required: true,
},
country: {
type: String,
},
coord: {
lon: {
type: String,
},
lat: {
type: String,
},
},
};
const citySchema = mongoose.Schema(city, {
collection: 'umbrello_cities',
});
const City = mongoose.model('city', citySchema);
export default City;