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.
15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
/* jslint node: true */
|
|
'use strict';
|
|
|
|
var db = require('../database');
|
|
|
|
var async = require('async');
|
|
var winston = require('winston');
|
|
|
|
module.exports = {
|
|
name: 'User_friendly_upgrade_script_name',
|
|
timestamp: Date.UTC(2017, 0, 1),
|
|
method: function (callback) {
|
|
// Do stuff here...
|
|
}
|
|
}; |