-
Apologies if this has been asked before, but I couldn't find any relevant issues.
I have two models: Extension, whose attributes are irrelevant to this question, and Tag, with a single TEXT attribute…
-
We currently have different sets of where logic, like, lte, etc.
It would be great for modularization and for user extension if we could allow users of Sequelize to extend the logic for these keys, i.…
-
Current version uses some Postgres-specific features, like COPY .. FROM stdin, and because of this it is difficult to deploy these files. It would be great if all *.sql files follow ANSI-SQL syntax.
-
The `server/config/sqldb/index.js` comes with this in the start.
```
/**
* Sequelize initialization module
*/
'use strict';
var path = require('path');
var config = require('../config/environment…
-
So looking at `idFetcher`
``` js
export function idFetcher(sequelize) {
return globalId => {
let {type, id} = fromGlobalId(globalId);
const models = Object.keys(sequelize.models);
type …
-
I couldn't find any official mention of this, so I thought I'd come out and ask if this is being considered.
emadd updated
9 years ago
-
Hi,
I got the following error while installing codem transcode. I have installed the dependencies succesfully.
[root@localhost cme]# npm install codem-transcode -g
npm http GET https://registry.npmj…
-
# KobraScript 0.2.0
Ticked back version to `0.2.0`, with respect to language maturity around the up-and-coming plang community KobraScript is not ready for prime-time > `1.0` status yet.
The followi…
-
When trying to run on production (but only on an AWS linux server). Local production works fine.
Here's my NPM list: any ideas?
```
├─┬ awis@1.0.0
│ ├── lodash@3.10.1
│ ├─┬ request@2.69.0
│ │ ├── aw…
-
I have this situation: a sandboxed module loads sequelize, which in turn loads the sqlite3 module.
sqlite3 has a native module (.node) implementation. Somewhere in the chain of calls to require sandbo…