mirror of
https://github.com/knex/knex.git
synced 2025-11-22 21:16:06 +00:00
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
'use strict';
|
|
|
|
exports.up = function (knex) {
|
|
return knex.schema
|
|
.table('migration_test_1', function (table) {
|
|
table.string('transaction');
|
|
})
|
|
.raw('SELECT foo FROM unknown_table');
|
|
};
|
|
|
|
exports.down = function () {};
|