mirror of
https://github.com/knex/knex.git
synced 2025-08-01 05:11:58 +00:00
13 lines
251 B
JavaScript
13 lines
251 B
JavaScript
![]() |
'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');
|
||
|
};
|