knex/test/integration/migrate/test2/20131019235242_migration_3.js

13 lines
251 B
JavaScript
Raw Permalink Normal View History

'use strict';
exports.up = function(knex) {
return knex.schema.createTable('migration_test_3', function(t) {
t.increments();
t.string('name');
});
};
exports.down = function(knex) {
return knex.schema.dropTable('migration_test_3');
};