getTable('talk_rooms'); if (!$table->hasColumn('object_type')) { $table->addColumn('object_type', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addColumn('object_id', Types::STRING, [ 'notnull' => false, 'length' => 64, 'default' => '', ]); $table->addIndex(['object_type', 'object_id'], 'tr_room_object'); } return $schema; } }