Skip to content

Instantly share code, notes, and snippets.

View plentini's full-sized avatar

Pedro Lentini plentini

  • Buenos Aires, Argentina
View GitHub Profile
@Ouwen
Ouwen / Postgis_with_sequelize.js
Last active May 28, 2024 03:42
Using PostGIS with sequelize
'use strict';
var Q = require('q');
module.exports = function (sequelize, DataTypes) {
return sequelize.define('Snapshot', {
time: {
type: DataTypes.DATE
}
}, {