node-migrate icon indicating copy to clipboard operation
node-migrate copied to clipboard

A database agnostic migration system for Node.js.

Results 7 node-migrate issues
Sort by recently updated
recently updated
newest added

self-explanatory

The main issue was the use of exec() to fetch a timestamp. We changed this to use the Date object instead. Furthermore we encountered an error with node-mysql resulting in...

Project seems like it might be a bit stale. This looks like what i want in terms of database migrations. I am using postgres, should i invest the time to...

If you create a table and then set an index for a row that doesn't exist, the migration will fail. The table will still be in the DB but you...

Seems like the .create function isn't working when building table rows. The readme shows: t.create('score', 'integer', {limit: 8}) But, that dosen't seem to work. I'd prefer the create function rather...

Currently, there is no way to define unique columns.

There is no way to set a column as auto-increment at the current time.