hasTable('talk_rooms')) { $table = $schema->getTable('talk_rooms'); if (!$table->hasColumn('listable')) { $table->addColumn('listable', Types::SMALLINT, [ 'notnull' => false, 'default' => 0, 'unsigned' => true, ]); } if (!$table->hasIndex('tr_listable')) { $table->addIndex(['listable'], 'tr_listable'); } return $schema; } return null; } }