Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/Contacts/config/Migrations/20191120012527_ContactsSyncTimestampFields.php
<?php
use Migrations\AbstractMigration;

class
ContactsSyncTimestampFields extends AbstractMigration
{
   
/**
     * Change Method.
     *
     * More information on this method is available here:
     * http://docs.phinx.org/en/latest/migrations.html#the-change-method
     * @return void
     */
   
public function change()
    {
       
$this->table('contacts')
            ->
renameColumn('updated', 'modified')
            ->
renameColumn('updated_by', 'modified_by')
            ->
update();

       
$this->table('messages')
            ->
renameColumn('updated', 'modified')
            ->
renameColumn('updated_by', 'modified_by')
            ->
update();
    }
}