sequelize.org
Paranoid
May 28th · Sequelize supports the concept of paranoid tables. A paranoid table is one that, when told to delete a record, it will not truly delete it. Instead, a special column called deletedAt will have its…
Shared by 4, including Marcos
sequelize.org
Querying
8 min read · May 25th · To select only some attributes, you can use the attributes option. Most often, you pass an array: Model.findAll({ attributes: ['foo', 'bar'] }); SELECT foo, bar ... Attributes can be renamed using a…
Reader View · Shared by 4, including Marcos
sequelize.org
Querying
8 min read · May 25th · An easy-to-use multi SQL dialect ORM for Node.js
Reader View · Shared by 4, including Marcos
sequelize.org
Model Querying - Basics
May 25th · Sequelize provides various methods to assist querying your database for data.
Shared by 4, including Marcos
sequelize.org
Model definition
~14 min read · May 25th · To define mappings between a model and a table, use the define method. const Project = sequelize.define('project', { title: Sequelize.STRING, description: Sequelize.TEXT }) const Task =…
Reader View · Shared by 4, including Marcos
sequelize.org
Model Basics | Sequelize
May 25th · In this tutorial you will learn what models are in Sequelize and how to use them.
Shared by 4, including Marcos
MDN Web Docs
Usar promesas - JavaScript
1 min read · May 25th · Una Promise (promesa en castellano) es un objeto que representa la terminación o el fracaso de una operación asíncrona. Dado que la mayoría de las personas consumen promises ya creadas, esta guía…
Reader View · Shared by 5, including Marcos
MDN Web Docs
Promise.all() - JavaScript
2 min read · May 25th · El método Promise.all(iterable) devuelve una promesa que termina correctamente cuando todas las promesas en el argumento iterable han sido concluídas con éxito, o bien rechaza la petición con el…
Reader View · Shared by 4, including Marcos
w3schools.com
MySQL LENGTH() Function
May 25th · W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
Shared by 4, including Marcos
docs.microsoft.com
DATEDIFF (Transact-SQL)
6 min read · May 25th · Transact-SQL reference for the DATEDIFF function. Returns the numerical difference between a start and end date based on datepart.
Reader View · Shared by 4, including Marcos
Stack Overflow
Node.js: Difference between req.query[] and req.params
1 min read · May 22nd · Is there a difference between obtaining QUERY_STRING arguments via req.query[myParam] and req.params.myParam? If so, when should I use which?
Reader View · Shared by 4, including Marcos
freeCodeCamp.org
Como borrar una branch de Git en ambos repositorios, local y remoto
1 min read · May 22nd · En la mayoría de los casos, es muy simple el borrar una branch de Git. Ahora aprenderás en este artículo como borrar ambas branches, tanto la local como la remota. Versión TL;DR // para borrar la…
Reader View · Shared by 4, including Marcos
w3schools.com
SQL INNER JOIN Keyword
1 min read · May 21st · W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
Reader View · Shared by 4, including Marcos
w3schools.com
SQL Aliases
2 min read · May 21st · W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
Reader View · Shared by 5, including Marcos