📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 06:59:59
📂
/ (Root)
/
home
/
orkouolp
/
web
/
orkofarms.com
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
notes
/
database
/
migrations
📍 /home/orkouolp/web/orkofarms.com/wp-content/plugins/elementor-pro/modules/notes/database/migrations
🔄 Refresh
✏️
Editing: add-author-display-name.php
Writable
<?php namespace ElementorPro\Modules\Notes\Database\Migrations; use ElementorPro\Modules\Notes\Module; use ElementorPro\Core\Database\Base_Migration; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Add_Author_Display_Name extends Base_Migration { /** * @inheritDoc */ public function up() { $this->add_columns( Module::TABLE_NOTES, [ 'author_display_name' => 'varchar(250) null comment "Save the author name when the author was deleted." AFTER `author_id`', ] ); } /** * @inheritDoc */ public function down() { $this->drop_columns( Module::TABLE_NOTES, [ 'author_display_name' ] ); } }
💾 Save Changes
❌ Cancel