View file database/upgrades/20191121234453_add_rating_to_news.php
<?php use Phinx\Migration\AbstractMigration; class AddRatingToNews extends AbstractMigration { /** * Migrate Change. */ public function change(): void { $table = $this->table('news'); $table->addColumn('rating', 'integer', ['default' => 0, 'after' => 'top']) ->update(); } }