-
## Motivation
It would be useful to know which members attend your committee events the most. This information could be used for prizes, shoutouts, or recruiting interns/officers.
## To Do
- [ ] …
-
## What was unclear/insufficient/not covered in the documentation
I came from PHP, doctrine world, but now try understand sequlize, I struggle with associations, I tried to follow manual http://docs.…
-
## What I'm doing
I have a simple User model. I want to make sure its emails are unique. The documentation claims that this is possible:
http://docs.sequelizejs.com/manual/tutorial/models-definition…
-
Sequelize now recommends using operators, which are javascript Symbols.
http://docs.sequelizejs.com/manual/tutorial/querying.html#operators-security
This causes a problem, because Symbols are ig…
-
When the server setup is changed (whenever a change to endpoints or collections in the UI is made and the setup is "saved" to the server), the server triggers a reload and it is necessary to synchroni…
kasp1 updated
7 years ago
-
As mentioned in the Sequelize documentation here http://docs.sequelizejs.com/en/latest/api/model/#scopeoptions-model
You can have scope functions with parameters.
e.g.
complexFunction: func…
-
https://medium.com/@jasmine.esplago.munoz/feeling-the-magic-with-sequelize-magic-methods-e9cc89ecdcc5
```
console.log(Object.keys(currentUser.__proto__));
```
-
Hey guys,
one thing that might still be open: can the scraping cli command be run multiple times without inserting doubles?
We want to maintain the data in the coming 2-3 years at least. So that…
-
## What are you doing?
Based on http://docs.sequelizejs.com/manual/tutorial/querying.html#ordering I can use order by clause such as:
```js
order: [
[Vehicle.associations.engine, Engine.associ…
-
How should I create an association within boilerplate ?
module.exports = function(sequelize, DataTypes) {
var Account = sequelize.define('Account', {
name: {
type: DataTypes.STRING,
…