Skip to content

Commit

Permalink
Merge pull request #1057 from dryanmas/extra-comma
Browse files Browse the repository at this point in the history
removed comma from seed js.stub
  • Loading branch information
elhigu committed Nov 24, 2015
2 parents d4015ca + 30c4d47 commit 29a3f18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/seed/stub/js.stub
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ exports.seed = function(knex, Promise) {
// Inserts seed entries
knex('table_name').insert({id: 1, colName: 'rowValue'}),
knex('table_name').insert({id: 2, colName: 'rowValue2'}),
knex('table_name').insert({id: 3, colName: 'rowValue3'}),
knex('table_name').insert({id: 3, colName: 'rowValue3'})
);
};

0 comments on commit 29a3f18

Please sign in to comment.