Table Chats
Creación automática de tabla para mensajes
const columns = [
{name: 'id', type: 'bigserial', primaryKey: true},
{name: 'wa_id', type: 'text', notNull: true},
{name: 'wam_id', type: 'text', notNull: true},
{name: 'type', type: 'text', notNull: true},
{name: 'outgoing', type: 'boolean', notNull: true},
{name: 'body', type: 'text', notNull: true},
{name: 'status', type: 'text',notNull: true},
{name: 'caption', type: 'text', null: true},
{name: 'data', type: 'bytea', notNull: true},
{name: 'bot', type: 'boolean'},
{name: 'created_at', type: 'timestamptz', notNull: true},
{name: 'updated_at', type: 'timestamptz', notNull: true},
]Última actualización