2017-02-22 13:28:22 -05:00
|
|
|
'use strict';
|
|
|
|
|
|
2020-05-21 16:06:35 -04:00
|
|
|
const db = require('../../database');
|
2017-02-22 13:28:22 -05:00
|
|
|
|
|
|
|
|
module.exports = {
|
2017-12-04 13:49:44 -07:00
|
|
|
// you should use spaces
|
|
|
|
|
// the underscores are there so you can double click to select the whole thing
|
2017-02-22 13:28:22 -05:00
|
|
|
name: 'User_friendly_upgrade_script_name',
|
2017-12-04 13:49:44 -07:00
|
|
|
// remember, month is zero-indexed (so January is 0, December is 11)
|
2020-05-21 16:06:35 -04:00
|
|
|
timestamp: Date.UTC(2020, 0, 1),
|
|
|
|
|
method: async () => {
|
2017-02-22 13:28:22 -05:00
|
|
|
// Do stuff here...
|
2017-03-10 16:37:16 -05:00
|
|
|
},
|
|
|
|
|
};
|