percolatestudio / meteor-migrations

Simple migration system for Meteor
https://atmospherejs.com/percolate/migrations
MIT License
245 stars 58 forks source link

Update migrations_server.js #30

Closed omasopust closed 9 years ago

omasopust commented 9 years ago

Meteor.Collection is deprecated. This PR uses Mongo.Collection instead.

This also solves a bug/crash when using matb33:collection-hooks in production environment.

JamesMGreene commented 9 years ago

This change would limit the usage of this package to Meteor >= 0.9.1. Is that an acceptable support level?

JamesMGreene commented 9 years ago

Nevermind, apparently it is per package.js#L9:

api.versionsFrom('METEOR@0.9.1.1');
zol commented 9 years ago

Thanks @omasopust