Steve Schmitt

Results 58 comments of Steve Schmitt

Sounds like a great idea. Wish I had time to work on it now, but my day job has me swamped at the moment.

Hmm, I thought we fixed this before. I'll take a look.

Hmm, it works for me. The SERIAL keyword creates a DEFAULT value for the column in the table. What does the DEFAULT look like for your column. Also, what version...

Weird. `sequelize-auto` uses the pluralizer in `sequelize`, so it should be consistent.

I don't know how Sequelize attaches the `findAll` function to the models. Let me know if you figure this one out.

I don't know why separating it to a different file would make a difference. You must be doing something different in the new code, or in a different order. I'm...

Can you give an example of what the input (table definition) and output (model class) should be?

Thanks @lensbart. For your example, I'm thinking the output would be a file `table.ts` containing something like: ```ts ... export class Table extends Model implements TableAttributes { id!: string; example!:...