Created
November 22, 2015 18:27
-
-
Save stevenbeeckman/bff3f1a7ac0fd5072d48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var stationSchema = new mongoose.Schema({ | |
address: String | |
, available_bike_stands: Number | |
, available_bikes: Number | |
, banking: Boolean | |
, bike_stands: Number | |
, bonus: Boolean | |
, contract_name: String | |
, last_update: Date | |
, name: String | |
, number: Number | |
, position: { | |
lat: Number | |
, lng: Number | |
} | |
, status: String | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment