8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import type { TableConfig } from '../types'
|
|
|
|
export const vistaResumenIngresosConfig: TableConfig = {
|
|
name: 'vista_resumen_ingresos',
|
|
table: 'vista_resumen_ingresos',
|
|
primaryKey: 'id',
|
|
defaultSelect: '*, fecha as created_at'
|
|
} |