aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/migrations/index.js
blob: be3328bad9576471359b5c328110c0059181f42a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* 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'),
  require('./012'),
  require('./013'),
  require('./014'),
  require('./015'),
  require('./016'),
  require('./017'),
  require('./018'),
  require('./019'),
  require('./020'),
  require('./021'),
  require('./022'),
  require('./023'),
  require('./024'),
  require('./025'),
  require('./026'),
  require('./027'),
  require('./028'),
  require('./029'),
  require('./030'),
  require('./031'),
  require('./032'),
  require('./033'),
]