mirror of
https://github.com/knex/knex.git
synced 2025-11-23 05:26:43 +00:00
12 lines
227 B
JavaScript
12 lines
227 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() {
|
||
|
|
|
||
|
|
};
|