UNPKG

sql-toolkit

Version:

A SQL Toolkit based on pure business objects passed to and from stateful data access objects

14 lines (10 loc) 237 B
const Base = require('./base'); class UtmSource extends Base { static get tableName() { return 'utm_source'; } static get sqlColumnsData() { return ['id', 'value', 'label', 'internal']; } } module.exports = UtmSource;