======== TEMPLATE BUG FORM ========
Wappler Version : 3.5.2
Operating System : MAC, NODE. MySql8. Docker.
Expected behavior
I should be able to add a new field/update a field with comments.
Actual behavior
exports.up = function(knex) {
return knex.schema
.table('job_agg_jobs_data', function (table) {
table.integer('status').comment('1 is active
2 is won
3 is lost
4 is archived');
})
};
exports.down = function(knex) {
return knex.schema
.table('job_agg_jobs_data', function (table) {
table.dropColumn('status');
})
};
Community Page
Last updated:
Last updated: