RunKit + npm: knex

node v13.14.0
endpointsharetweet
const Knex = require('knex'); const knex = Knex({ client: 'pg', }); knex.schema.alterTable('appointments', table => { table.enu('type', ['video', 'physical'], { useNative: true, enumName: 'request_type' }).alter(); }).toSQL()
Created from: https://npm.runkit.com/knex
Loading…