const { MegaModel } = require('@megaorm/model'); /** * Each instance of this model corresponds to a row in the `[tableName]` table. * * @extends `MegaModel` */ class [className] extends MegaModel { /** * The name of the table associated with this model. */ static table = '[tableName]'; /** * List of columns to ignore during updates. */ static ignore = ['id', 'created_at', 'updated_at']; } module.exports = { [className] };