Размер файла: 1.1Kb
<?php
use Phinx\Migration\AbstractMigration;
class ChangeFieldsInFilesForum extends AbstractMigration
{
/**
* Migrate Up.
*/
public function up()
{
$rows = $this->fetchAll('SELECT * FROM files_forum');
foreach($rows as $row) {
$user = 0;
if (!empty($row['user'])) {
$user = $this->fetchRow('SELECT id FROM users WHERE login = "'.$row['user'].'" LIMIT 1;');
}
$userId = ! empty($user) ? $user['id'] : 0;
$this->execute('UPDATE files_forum SET user="'.$userId.'" WHERE id = "'.$row['id'].'" LIMIT 1;');
}
$table = $this->table('files_forum');
$table
->changeColumn('user', 'integer')
->save();
$table->renameColumn('user', 'user_id');
$table->renameColumn('time', 'created_at');
}
/**
* Migrate Down.
*/
public function down()
{
$table = $this->table('files_forum');
$table
->renameColumn('user_id', 'user')
->renameColumn('created_at', 'time')
->save();
}
}