13 lines
391 B
Plaintext
Raw Normal View History

2016-03-18 11:12:50 +01:00
/**
* Select the `<%= tableName %>` table.
*/
connection.schema.table('<%= tableName %>', function (table) {
<% if (!_.isEmpty(attributes)) { _.forEach(attributes, function(details, attribute) { %><%= models[tableName].attributes[attribute].create %>;
<% }); } %>
}).catch(function (err) {
console.log('Impossible to select the `<%= tableName %>` table.');
console.log(err);
}),