Просмотр файла database/migrations/20180420180052_create_wall_table.php
<?php use Phinx\Migration\AbstractMigration; class CreateWallTable extends AbstractMigration { /** * Change Method. */ public function change() { if (! $this->hasTable('wall')) { $table = $this->table('wall', ['collation' => env('DB_COLLATION')]); $table ->addColumn('user_id', 'integer') ->addColumn('author_id', 'integer') ->addColumn('text', 'text', ['null' => true]) ->addColumn('created_at', 'integer') ->addIndex('user_id') ->addIndex('created_at') ->create(); } } }