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