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