2017-01-12 07:47:56 +01:00
|
|
|
/* The migrator has two methods the user should be concerned with:
|
2017-02-04 06:35:54 +01:00
|
|
|
*
|
2017-01-12 07:47:56 +01:00
|
|
|
* 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.
|
|
|
|
|
2016-04-12 23:41:58 +02:00
|
|
|
module.exports = [
|
2017-01-12 11:24:33 +01:00
|
|
|
require('./002'),
|
|
|
|
require('./003'),
|
|
|
|
require('./004'),
|
2017-01-29 04:19:03 +01:00
|
|
|
require('./005'),
|
2017-01-30 22:01:54 +01:00
|
|
|
require('./006'),
|
2017-02-03 05:20:13 +01:00
|
|
|
require('./007'),
|
2017-02-03 07:23:45 +01:00
|
|
|
require('./008'),
|
2017-02-03 08:32:24 +01:00
|
|
|
require('./009'),
|
2017-02-04 06:35:54 +01:00
|
|
|
require('./010'),
|
2017-02-14 22:21:00 +01:00
|
|
|
require('./011'),
|
2017-03-29 17:08:15 +02:00
|
|
|
require('./012'),
|
2017-05-16 08:56:13 +02:00
|
|
|
require('./013'),
|
2017-05-23 07:55:20 +02:00
|
|
|
require('./014'),
|
2016-04-12 23:41:58 +02:00
|
|
|
]
|