ls.stub 295 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 exports.up = (knex, Promise) -> <% if (d.tableName) { %> knex.schema.create-table "<%= d.tableName %>", (t) -> t.increments! t.timestamp! <% } %> exports.down = (knex, Promise) -> <% if (d.tableName) { %> knex.schema.drop-table "<%= d.tableName %>" <% } %>