Initial commit
This commit is contained in:
parent
a13ceef804
commit
8641fc9723
19 changed files with 303532 additions and 0 deletions
42
models/Stations.js
Normal file
42
models/Stations.js
Normal file
|
@ -0,0 +1,42 @@
|
|||
/**
|
||||
* Model permettant de bufferiser les events reçus de Kafka
|
||||
*/
|
||||
module.exports = mongoose => {
|
||||
const schema = new mongoose.Schema({
|
||||
stationId: String,
|
||||
location: {
|
||||
type: { type: String },
|
||||
coordinates: []
|
||||
},
|
||||
prices: [
|
||||
{
|
||||
gasType: String,
|
||||
price: Number,
|
||||
updatedAt: Object
|
||||
}
|
||||
],
|
||||
services: [],
|
||||
postCode: String,
|
||||
address: String,
|
||||
city: String
|
||||
});
|
||||
|
||||
schema.index({ location: "2dsphere" });
|
||||
|
||||
const Stations = mongoose.model("Stations", schema);
|
||||
|
||||
Stations.createIndexes();
|
||||
|
||||
return Stations;
|
||||
};
|
||||
|
||||
// INFO:
|
||||
/*
|
||||
schema.location = {
|
||||
type: 'Point',
|
||||
coordinates: [
|
||||
Number(longitude),
|
||||
Number(latitude)
|
||||
]
|
||||
}
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue