1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/app/scripts/migrations/index.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

/* The migrator has two methods the user should be concerned with:
2017-02-04 06:35:54 +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.
module.exports = [
require('./002'),
require('./003'),
require('./004'),
require('./005'),
require('./006'),
require('./007'),
require('./008'),
require('./009'),
2017-02-04 06:35:54 +01:00
require('./010'),
require('./011'),
2017-03-29 17:08:15 +02:00
require('./012'),
require('./013'),
require('./014'),
require('./015'),
require('./016'),
require('./017'),
2017-08-15 05:06:15 +02:00
require('./018'),
require('./019'),
require('./020'),
require('./021'),
require('./022'),
require('./023'),
require('./024'),
2018-04-06 03:05:03 +02:00
require('./025'),
require('./026'),
2018-07-25 23:11:07 +02:00
require('./027'),
require('./028'),
require('./029'),
require('./030'),
require('./031'),
]