You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
638 B
25 lines
638 B
/* The migrator has two methods the user should be concerned with:
|
|
*
|
|
* getData(), which returns the app-consumable data object
|
|
* saveData(), which persists the app-consumable data object.
|
|
*/
|
|
|
|
// Migrations must start at version 1 or later.
|
|
// They are objects with a `version` number
|
|
// and a `migrate` function.
|
|
//
|
|
// The `migrate` function receives the previous
|
|
// config data format, and returns the new one.
|
|
|
|
module.exports = [
|
|
require('./002'),
|
|
require('./003'),
|
|
require('./004'),
|
|
require('./005'),
|
|
require('./006'),
|
|
require('./007'),
|
|
require('./008'),
|
|
require('./009'),
|
|
require('./010'),
|
|
require('./011'),
|
|
]
|
|
|