📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 10:23:28
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-user-manager
/
includes
/
wpum-database
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-user-manager/includes/wpum-database
🔄 Refresh
✏️
Editing: class-wpum-db-table-field-meta.php
Writable
<?php /** * Handles storage of the custom fields meta information. * * @package wp-user-manager * @copyright Copyright (c) 2018, Alessandro Tesoro * @license https://opensource.org/licenses/GPL-3.0 GNU Public License */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Setup the global "wpum_fieldmeta" database table */ final class WPUM_DB_Table_Field_Meta extends WPUM_DB_Table { /** * Table name * * @access protected * @var string */ protected $name = 'wpum_fieldmeta'; /** * Database version * * @access protected * @var int */ protected $version = 201801170001; /** * Setup the database schema * * @access protected * @return void */ protected function set_schema() { $max_index_length = 191; $this->schema = "meta_id bigint(20) unsigned NOT NULL auto_increment, wpum_field_id bigint(20) unsigned NOT NULL default '0', meta_key varchar(255) DEFAULT NULL, meta_value longtext DEFAULT NULL, PRIMARY KEY (meta_id), KEY wpum_field_id (wpum_field_id), KEY meta_key (meta_key({$max_index_length}))"; } /** * Handle schema changes * * @access protected * @return void */ protected function upgrade() {} }
💾 Save Changes
❌ Cancel