16 lines
312 B
Plaintext
16 lines
312 B
Plaintext
|
|
exports.up = function(knex) {
|
|
<% if (d.tableName) { %>
|
|
return knex.schema.createTable("<%= d.tableName %>", function(t) {
|
|
t.increments();
|
|
t.timestamp();
|
|
});
|
|
<% } %>
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
<% if (d.tableName) { %>
|
|
return knex.schema.dropTable("<%= d.tableName %>");
|
|
<% } %>
|
|
};
|