16 lines
312 B
Plaintext
Raw Permalink Normal View History

2015-05-09 13:58:18 -04:00
exports.up = function(knex) {
2015-05-09 13:58:18 -04:00
<% if (d.tableName) { %>
return knex.schema.createTable("<%= d.tableName %>", function(t) {
t.increments();
t.timestamp();
});
<% } %>
};
exports.down = function(knex) {
2015-05-09 13:58:18 -04:00
<% if (d.tableName) { %>
return knex.schema.dropTable("<%= d.tableName %>");
<% } %>
};