mirror of
https://github.com/knex/knex.git
synced 2025-10-07 22:16:56 +00:00
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
'use strict';
|
|
|
|
exports.up = function(knex) {
|
|
return knex.schema
|
|
.createTable('migration_test_1', function(t) {
|
|
t.increments();
|
|
t.string('name');
|
|
});
|
|
};
|
|
|
|
exports.down = function(knex) {
|
|
return knex.schema.dropTable('migration_test_1');
|
|
};
|