You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
450 B
Plaintext
18 lines
450 B
Plaintext
'use strict';
|
|
|
|
var db = require('../../database');
|
|
|
|
var async = require('async');
|
|
var winston = require('winston');
|
|
|
|
module.exports = {
|
|
// you should use spaces
|
|
// the underscores are there so you can double click to select the whole thing
|
|
name: 'User_friendly_upgrade_script_name',
|
|
// remember, month is zero-indexed (so January is 0, December is 11)
|
|
timestamp: Date.UTC(2017, 0, 1),
|
|
method: function (callback) {
|
|
// Do stuff here...
|
|
},
|
|
};
|