Results 59 comments of Jan Aagaard Meier

I think the issues are subtly different - #15 has a composite primary key, while this example has a single uuid primary key. In the other issue, the generated model...

This would also be very helpful for us a Lenus eHealth

@huyphams Im experiencing the same behaviour. When I open table plus directly through /Contents/MacOS/TablePlus, the ssh tunnel works, but not when launching table plus normally

> I think the issue could be related to the permission. Run directly on Terminal Vs Double click to run the app, could you check if it has the same...

So far what I have is a bash script that can be saved as `.command` file on the desktop, allowing users to double click on it. It handles MFA, opens...

> Just an idea, I think we can add a tab for bash script here. So basically the bootstrap command will support two scripting types. But I'm not sure if...

Hi Jay Unfortunately we were stumped by another issue that's preventing us from using esbuild with jest. The way that esbuild exports modules makes them impossible to stub, so we...

I realize this might just be a small, contrieved example, but there is no reason to use `.col` in this example. `attributes: ['username']` will work fine, including aliasses. `.col` is...

The innofluence fork is me and mickhansen. But the support is not yet complete, and we have agree not to fully implement it sequelize fully supports non-id primary keys. That...

Try adding hooks: true to the associations: ``` js Document.belongsTo(Category, { foreignKeyConstraint : true, onDelete : 'cascade', hooks: true }); Category.hasMany(Document, { hooks: true ); ```