knex/test/integration/migrate/test_with_invalid/20131019235242_migration_1.js

13 lines
254 B
JavaScript
Raw Normal View History

'use strict';
2020-04-19 00:40:23 +02:00
exports.up = function (knex) {
return knex.schema.createTable('migration_test_1', function (t) {
t.increments();
t.string('name');
});
};
2020-04-19 00:40:23 +02:00
exports.down = function (knex) {
return knex.schema.dropTable('migration_test_1');
};