1
0
mirror of https://github.com/franjsco/umbrello-api synced 2025-01-14 08:35:53 +01:00
umbrello-api/src/db/city.model.js
Francesco Esposito 0dc4a2924f Add city model
2019-08-22 17:43:41 +02:00

33 lines
453 B
JavaScript

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;