| 1234567891011 |
- exports.up = function(knex, Promise) {
- return knex.schema.alterTable('pesquisa', t => {
- t.string('Cor').notNullable()
- });
- };
- exports.down = function(knex, Promise) {
- return knex.schema.alterTable('pesquisa', t => {
- t.dropColumn('Cor')
- });
- };
|