Skip to content

Commit

Permalink
add use strict to the template
Browse files Browse the repository at this point in the history
  • Loading branch information
limianwang committed Mar 18, 2015
1 parent f6cc139 commit cc4d6e1
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/migrate
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,13 @@ var usage = [
*/

var template = [
''
, 'exports.up = function(next){'
'\'use strict\''
, ''
, 'exports.up = function(next) {'
, ' next();'
, '};'
, ''
, 'exports.down = function(next){'
, 'exports.down = function(next) {'
, ' next();'
, '};'
, ''
Expand Down

0 comments on commit cc4d6e1

Please sign in to comment.