UNPKG

node-pg-migrate

Version:

PostgreSQL database migration management tool for node.js

9 lines (8 loc) 204 B
import { escapeValue } from "."; function makeComment(object, name, text = null) { const literal = escapeValue(text); return `COMMENT ON ${object} ${name} IS ${literal};`; } export { makeComment };