# automatorwp/6.0.2/classes/database.php

AutomatorWP – No-Code Workflow Automation, Integration &amp; Webhooks Plugin, now with AI, version 6.0.2. 122 lines.

- Page: https://pluginprobe.com/plugins/automatorwp/6.0.2/code/classes/database.php
- Raw: https://pluginprobe.com/plugins/automatorwp/6.0.2/raw/classes/database.php
- Modified: 2026-09-14T10:29:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/automatorwp/6.0.2/code/classes/database.php#L10-L20`.

```php
<?php
/**
 * Database
 *
 * @package     AutomatorWP\Classes\Database
 * @author      AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com>
 * @since       1.0.0
 */
// Exit if accessed directly
if( !defined( 'ABSPATH' ) ) exit;

class AutomatorWP_Database {

    /**
     * Posts table name
     *
     * @since 1.0.0
     *
     * @var string $posts
     */
    public $posts = '';

    /**
     * Post meta table name
     *
     * @since 1.0.0
     *
     * @var string $postmeta
     */
    public $postmeta = '';

    /**
     * Users table name
     *
     * @since 1.0.0
     *
     * @var string $users
     */
    public $users = '';

    /**
     * User meta table name
     *
     * @since 1.0.0
     *
     * @var string $user
     */
    public $usermeta = '';

    /**
     * Automations table name
     *
     * @since 1.0.0
     *
     * @var string $automations
     */
    public $automations = '';

    /**
     * Automations meta table name
     *
     * @since 1.0.0
     *
     * @var string $automations_meta
     */
    public $automations_meta = '';

    /**
     * Triggers table name
     *
     * @since 1.0.0
     *
     * @var string $triggers
     */
    public $triggers = '';

    /**
     * Triggers meta table name
     *
     * @since 1.0.0
     *
     * @var string $triggers_meta
     */
    public $triggers_meta = '';

    /**
     * Actions table name
     *
     * @since 1.0.0
     *
     * @var string $actions
     */
    public $actions = '';

    /**
     * Actions meta table name
     *
     * @since 1.0.0
     *
     * @var string $actions_meta
     */
    public $actions_meta = '';

    /**
     * Logs table name
     *
     * @since 1.0.0
     *
     * @var string $logs
     */
    public $logs = '';

    /**
     * Logs meta table name
     *
     * @since 1.0.0
     *
     * @var string $logs_meta
     */
    public $logs_meta = '';

}
```
